location ~ \.(eot|otf|ttf|woff|svg)$ { add_header Access-Control-Allow-Origin *; }...
nginx禁止访问所有.开头的隐藏文件设置 location ~* /.* { deny all; } nginx禁止访问目录, 禁止访问path目录 location ^~ /path { deny all; } 可以把path换成实际需要的目录,目录path后是否带有/,带/只禁...
Nginx 会在 http 头,或者出现错误页的时候会有醒目的版本号提示。 为了安全,可以关闭这些信息。 方法很简单,只需在 nginx.conf 的 http { 里头加入 server_tokens 的参数 例如: server_token...
之前上传了很多的图片没有使用过水印,怎么样快速的给全站加上水印输出。但是又没有改变原图呢? 这个时候就需要nginx的伪静态和iis的重写规则了。基本上iis和nginx一样处理,如下...
An error occurred. Sorry, the page you are looking for is currently unavailable. Please try again later. If you are the system administrator of this resource then you should check the error log for details. Faithfully yours, nginx. nginx提示...
如果不禁止下载 htaccess,会导致自己的真是路径的暴露! 在nginx中添加 location ~* \.(htaccess)$ { return 403; }...
nginx error日志有如下 client intended to send too large body: 187716882 bytes, 那是因为在nginx配置有上传限制 client_max_body_size 100m; 默认100M 可以修改自己需要的大小...
301转跳也是常用转跳之一 server{listen80;server_nameapizl.com;rewrite^/(.*)$http://www.apizl.com/$1permanent;}...
在使用nginx做php部署的 明明是正确的php代码为什么会提示错误呢? 这个时候我们需要看报错日志! 一般在nginx目录下面的logs目录 打开error.log文件 我们会看到如下的报错 016/11/0121:32:5...
在nginx配置伪静态时候重启lnmp时候报错。 Stoping nginx... nginx: [emerg] directive rewrite is not terminated by ; in /usr/local/nginx/conf/nginx.conf:97 rewrite^.{0,1}$/html/index/last;#pathinfo;错误的rewrite^.{0,1}$/action...