思路:
1.kkfile的 context全局路径可以修改 context-path,比如:server.servlet.context-path
2.使用nginx反向代理 /kkfile 转发到 kkfile路径上
官网教程
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/; #该服务的地址
}
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » linux系统kkFileView 配置https预览文件
发表评论 取消回复