nginx屏蔽无效请求方式

upstream tomcat {
02 ip_hash;
03 server 192.168.2.187:8080;
04 }
05  
06 location ~* /html {
07  
08 if ($request_method = PUT ) {
09  
10 return 403;
11  
12 }
13  
14 if ($request_method = DELETE ) {
15  
16 return 403;
17  
18 }
19  
20 if ($request_method = POST ) {
21  
22 return 403;
23  
24 }
25  
26 proxy_method GET;
27  
28 proxy_pass http://tomcat;
29  
30 }

当路径包含/html的时候,则代理到server后端进行请求数据。这里屏蔽了PUT,DELETE,POST方法,只是使用了GET,主要目的是为了安全性,因为DELETE,POST,PUT是可以修改数据的。

或者:

01 limit_except GET {
02 allow 192.168.1.1;
03 deny all;
04 }
05  
06  
07 if ($request_filename ~ /test/index.html) {
08 # return 404;
09 rewrite ^/(.*) /index.html;                                                                       
10 };

nginx禁止访问txt|doc文件                              

方法一:全局设置,禁止访问任何以后缀txt|doc的文件 
1 location ~* \.(txt|doc)$ {
2         deny all;
3   }
方法二:只禁止访问某目录下的txt|doc 
1 location ~* \.(txt|doc)$ {
2         if (-f $request_filename) {
3         root html/job;
4         break;
5          }
6    }
nginx禁止某中浏览器访问:#浏览器类型可从日志得知。 
1 server
2        {
3                listen       80;
4                server_name  test.domain.com;
5                index index.php index.html;
6                root   /opt/nginx/html/;
7                if $http_user_agent ~* "MSIE 6.0" ) {
8                return 403;
9                 }
设置目录执行权限                                                                                 
在windows+iis下,可以设置上传目录,类似:upload,uploadfile,attachments,这样的目录下面无脚本执行权限,从而防止非法用户上传脚本得到webshell 

nginx上也很简单,我们使用location 如下:

1 location ~ ^/upload/.*\.(php|php5)$
2 {
3 deny all;
4 }

其中upload换为你要设置的目录名字

这条规则的含义是匹配请求连接中开头是/upload/,中间匹配任意字符,结尾匹配.php或者.php5的页面,最后利用deny all禁止访问,这样就防止了上传目录的脚本执行权限


## Only allow these request methods (GET|HEAD|POST)

 if ($request_method !~ ^(GET|HEAD|POST)$ ) { 

   return 444; }


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值