微信配置JS接口安全域名问题-Nginx配置
Posted 愿无违
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信配置JS接口安全域名问题-Nginx配置相关的知识,希望对你有一定的参考价值。
1、将下载的txt文件放入/usr/local/nginx/html/目录下面。
2、修改nginx.cong配置文件中的location标签
location / { root html; index index.html index.htm; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_redirect off; }
3、加入完以后记得重启nginx服务
这样我们用域名+txt文件在游览器就能访问了
然后就妥了
以上是关于微信配置JS接口安全域名问题-Nginx配置的主要内容,如果未能解决你的问题,请参考以下文章