nginx自定义404、403页面

1、在nginx的http模块加入:fastcgi_intercept_errors on;2、在server模块加入location / { root /data; index index.html index.htm yunmai...

Read More


Nginx配置网页只能指定浏览器访问

Nginx配置网页只能指定浏览器访问,项目需求,网页只能在微信内置浏览器打开,非内置浏览器禁止打开。2种思路:1、Nginx判断UA只能微信打开,此方式无法避免伪造的UA。location / { if ( $http_user_agent !~ &qu...

Read More