officeonline 显示资源路径报错
程序员文章站
2022-05-26 16:09:20
...
背景介绍:
使用officeonline 预览,部署到正式环境后使用https域名的方式访问,预览页面使用html的iframe,导致如果iframe内部调用外部资源是http的方式会报错,所以使用nginx过滤的方式把所有http过滤为https域名的方式,具体nginx配置如下:
location /wv/ { proxy_set_header X-Forwarded-Host $host; proxy_set_header X-Forwarded-Server $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Real-IP $remote_addr; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; proxy_pass http://192.168.1.13/wv/; sub_filter_once off; sub_filter_types *; sub_filter http://192.168.1.13:80 https://test.com; sub_filter http://192.168.1.13 https://test.com; sub_filter http:\u002f\u002f192.168.1.13:80 https:\u002f\u002ftest.com; sub_filter http:\u002f\u002f192.168.1.13 https:\u002f\u002ftest.com; }
推荐阅读
-
避免图片路径访问405,可以用图片控件来显示局部相对路径,不需要域名就不会出现jpg静态资源访问错误
-
基于Springboot2.3访问本地路径下静态资源的方法(解决报错:Not allowed to load local resource)
-
officeonline 显示资源路径报错
-
避免图片路径访问405,可以用图片控件来显示局部相对路径,不需要域名就不会出现jpg静态资源访问错误
-
.htaccess 隐藏index.php 并使用pathinfo 资源文件路径错误不报错
-
.htaccess 隐藏index.php 并使用pathinfo 资源文件路径错误不报错
-
基于Springboot2.3访问本地路径下静态资源的方法(解决报错:Not allowed to load local resource)
-
SpringBoot静态资源路径配置及主页显示
-
officeonline 显示资源路径报错