nginx 强制使用https后,如何使用http访问kkFileView
作者:互联网
场景:
生产环境要求强制使用https
访问,但是kkFileView不支持https
!
而且我的nginx配置了
add_header Content-Security-Policy "upgrade-insecure-requests;connect-src *";
怎么办?
解决方案
方案一
下载kkFileView源码,自己修改使其支持https
,然后编译打包;
或者使用kkFileView 高雄修改版
方案二
nginx
配置重定向rewrite
,这样就可以不受
location /onlinePreview {
rewrite ^/(.*) http://127.0.0.1:8012/$1 redirect;
}
标签:http,rewrite,nginx,https,使用,kkFileView 来源: https://www.cnblogs.com/mayhot/p/16670461.html