思路:

1.kkfile的 context全局路径可以修改 context-path,比如:server.servlet.context-path

2.使用nginx反向代理 /kkfile 转发到 kkfile路径上

官网教程

​​​​​​kkFileView - 在线文件预览

1、配置config/application.properties.

server.servlet.context-path=/preview

base.url = https://file.keking.com/preview

2、nginx反向代理

#kkFileView的反向代理
	location /preview/ { 
		client_max_body_size  1024m;
		client_body_buffer_size 1024m; 
		
		proxy_set_header Host $http_host;
		proxy_set_header X-Real-IP $remote_addr;
		proxy_set_header REMOTE-HOST $remote_addr;
		proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
		proxy_pass http://10.10.1.96:8012/preview/; #该服务的地址
	}

点赞(0) 打赏

评论列表 共有 0 条评论

暂无评论

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部