分类:
nginx woff2加载报错404

nginx woff2加载报错404

栏目分类:Nginx 浏览次数:177 发布时间:2018-08-13

location ~ \.(eot|otf|ttf|woff|svg)$ { add_header Access-Control-Allow-Origin *; }...

TAG:
nginx禁止访问某个文件和目录(文件夹)

nginx禁止访问某个文件和目录(文件夹)

栏目分类:Nginx 浏览次数:169 发布时间:2017-10-09

nginx禁止访问所有.开头的隐藏文件设置 location ~* /.* { deny all; } nginx禁止访问目录, 禁止访问path目录 location ^~ /path { deny all; } 可以把path换成实际需要的目录,目录path后是否带有/,带/只禁...

TAG:
nginx 隐藏或屏蔽返回版本信息

nginx 隐藏或屏蔽返回版本信息

栏目分类:Nginx 浏览次数:299 发布时间:2017-10-05

Nginx 会在 http 头,或者出现错误页的时候会有醒目的版本号提示。 为了安全,可以关闭这些信息。 方法很简单,只需在 nginx.conf 的 http { 里头加入 server_tokens 的参数 例如: server_token...

TAG:
<b>nginx iis 下对目录中所有图片加水印方法</b>

nginx iis 下对目录中所有图片加水印方法

栏目分类:Nginx 浏览次数:655 发布时间:2017-03-14

之前上传了很多的图片没有使用过水印,怎么样快速的给全站加上水印输出。但是又没有改变原图呢? 这个时候就需要nginx的伪静态和iis的重写规则了。基本上iis和nginx一样处理,如下...

TAG:
nginx 提示An error occurred 解决方法

nginx 提示An error occurred 解决方法

栏目分类:Nginx 浏览次数:1240 发布时间:2017-03-09

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提示...

TAG:
nginx 防止 get请求下载htaccess

nginx 防止 get请求下载htaccess

栏目分类:Nginx 浏览次数:348 发布时间:2017-03-07

如果不禁止下载 htaccess,会导致自己的真是路径的暴露! 在nginx中添加 location ~* \.(htaccess)$ { return 403; }...

TAG:
nginx上传大附件 client intended to send too large body  187716882 bytes,

nginx上传大附件 client intended to send too large body 187716882 bytes,

栏目分类:Nginx 浏览次数:512 发布时间:2017-02-21

nginx error日志有如下 client intended to send too large body: 187716882 bytes, 那是因为在nginx配置有上传限制 client_max_body_size 100m; 默认100M 可以修改自己需要的大小...

TAG:
nginx http301转跳 无www转跳到www域名

nginx http301转跳 无www转跳到www域名

栏目分类:Nginx 浏览次数:295 发布时间:2017-02-09

301转跳也是常用转跳之一 server{listen80;server_nameapizl.com;rewrite^/(.*)$http://www.apizl.com/$1permanent;}...

TAG:
nginx常见错误 500错误

nginx常见错误 500错误

栏目分类:Nginx 浏览次数:405 发布时间:2016-11-01

在使用nginx做php部署的 明明是正确的php代码为什么会提示错误呢? 这个时候我们需要看报错日志! 一般在nginx目录下面的logs目录 打开error.log文件 我们会看到如下的报错 016/11/0121:32:5...

TAG:
linux 下nginx 中伪静态错误 directive "rewrite" is not terminated by ";" in

linux 下nginx 中伪静态错误 directive "rewrite" is not terminated by ";" in

栏目分类:Nginx 浏览次数:526 发布时间:2016-08-31

在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...

TAG: