码迷,mamicode.com
首页 > 系统相关 > 详细

Linux学习笔记十二周四次课(4月26日)

时间:2018-04-29 12:00:03      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:nginx防盗链   nginx访问控制   Nginx解析php相关配置   Nginx代理   

12.13 Nginx防盗链

技术分享图片

技术分享图片

防盗链,就是禁止其他网址链接到本网站图片文本等资源;

vim /usr/local/nginx/conf/vhost/test.com.conf //server中添加以下信息

----------------------------------------------------------------------------------

location ~* ^.+\.(gif|jpg|png|swf|flv|rar|zip|doc|pdf|gz|bz2|jpeg|bmp|xls)$

{

expires 7d; //过期时间7天

valid_referers none blocked server_names *.test.com; //防盗链部分,referer域名,none blocked白名单

if ($invalid_referer) { //如果非域名

return 403;

}

access_log off;

}

-----------------------------------------------------------------------------------

~*表示后面括号中的字符串不区分大小写;

/usr/local/nginx/sbin/nginx -t

/usr/local/nginx/sbin/nginx -s reload

ls /data/wwwroot/test.com/ //查看目录里有哪些可以访问的文件

curl -x127.0.0.1:80 -I test.com/2.js //状态码200,正常访问;

curl -e "http://www.baidu.com/1.txt" -x127.0.0.1:80 -I test.com/2.js //403禁止


12.14 Nginx访问控制


技术分享图片技术分享图片

访问控制,允许指定IP访问,其他不可访问;

vim /usr/local/nginx/conf/vhost/test.com.conf //server中添加以下信息

---------------------------------------------------------

location /admin/

{

allow 192.168.133.1;

allow 127.0.0.1;

deny all;

}

----------------------------------------------------------

mkdir /data/wwwroot/test.com/admin/

echo "test,test" > /data/wwwroot/test.com/admin/1.html

/usr/local/nginx/sbin/nginx -t

/usr/local/nginx/sbin/nginx -s reload

curl -x127.0.0.1:80 test.com/admin/1.html -I

curl -x192.168.133.130:80 test.com/admin/1.html -I

cat /tmp/test.com.log //查看访问日志

技术分享图片技术分享图片

vim /usr/local/nginx/conf/vhost/test.com.conf//server中添加以下信息

---------------------------------------------------------

location ~.* (abc|jmage)/.*\.php$

{

deny all;

}

----------------------------------------------------------

/usr/local/nginx/sbin/nginx -t

/usr/local/nginx/sbin/nginx -s reload

mkdir /data/wwwroot/test.com/upload

echo "1111" > /data/wwwroot/test.com/upload/1.php

curl -x127.0.0.1:80 test.com/upload/1.php //403禁止

echo "1111" > /data/wwwroot/test.com/upload/1.txt

curl -x127.0.0.1:80 test.com/upload/1.txt //正常访问

cat /tmp/test.com.log //查看访问日志


//根据user_agent限制

vim /usr/local/nginx/conf/vhost/test.com.conf//server中添加以下信息

-------------------------------------------------------------------

if($http_user_agent ~ 'Spider/3.0|YoudaoBot|Tomato')

{

return 403;

}

-------------------------------------------------------------------

//deny all和return 403效果一样

/usr/local/nginx/sbin/nginx -t

/usr/local/nginx/sbin/nginx -s reload

curl -x127.0.0.1:80 test.com/upload/1.php //403禁止

curl -x127.0.0.1:80 test.com/upload/1.txt -I //200正常访问

curl  -A "Tomatoalskdflsd" -x127.0.0.1:80 test.com/upload/1.txt -I  //403禁止

curl  -A "tomatoalskdflsd" -x127.0.0.1:80 test.com/upload/1.txt -I  //200正常访问


//如果想忽略大小写,禁止

vim /usr/local/nginx/conf/vhost/test.com.conf //server中添加以下信息

-------------------------------------------------------------------

if($http_user_agent ~* 'Spider/3.0|YoudaoBot|Tomato')

{

return 403;

}

-------------------------------------------------------------------

/usr/local/nginx/sbin/nginx -t

/usr/local/nginx/sbin/nginx -s reload

curl  -A "Tomatoalskdflsd" -x127.0.0.1:80 test.com/upload/1.txt -I  //403禁止

curl  -A "tomatoalskdflsd" -x127.0.0.1:80 test.com/upload/1.txt -I  //403禁止


12.15 Nginx解析php相关配置


技术分享图片技术分享图片

vim /usr/local/nginx/conf/vhost/test.com.conf//server中添加以下信息

-------------------------------------------------------------------

location ~ \.php$

{

include fastcgi_parems;

fastcgi_pass unix:/tmp/php-fcgi.sock;

fastcgi_index index.php;

fastcgi_parem SCRIPT_FILENAME /data/wwwroot/test.com$fastcgi_script_name;

}

-------------------------------------------------------------------

//fastcgi_pass用来指定php-fpm监听的地址或者socket

//若打错了写入内容,最终测试会报502错误;

vim /data/wwwroot/test.com/3.php //写入以下内容

-------------------------------------------------------------------

<?php

phpinfo();

-------------------------------------------------------------------

curl -x127.0.0.1:80 test.com/upload/3.php //不能解析,直接把源码(写入的内容)显示出来

/usr/local/nginx/sbin/nginx -t

/usr/local/nginx/sbin/nginx -s reload

curl -x127.0.0.1:80 test.com/upload/3.php //正常解析

tail /usr/local/nginx/logs/error.log //查看错误日志


12.16 Nginx代理


技术分享图片技术分享图片

cd /usr/local/nginx/conf/vhost

vim proxy.conf //加入如下内容

-------------------------------------------------------------------

server

{

listen 80;

server_name ask.apelearn.com; //定义域名

location /

{

proxy_pass http://121.201.9.155/; //WEB服务器IP

proxy_set_header Host $host; //$host其实就是server_name域名

proxy_set_header X-Real-IP $remote_addr;

proxy-set_header X-Forwarded-For $proxy_add_x_forwarded_for;

}

}

-------------------------------------------------------------------

/usr/local/nginx/sbin/nginx -t

/usr/local/nginx/sbin/nginx -s reload

curl ask.apelearn.com/robots.txt 

curl -x127.0.0.1:80 ask.apelearn.com/robots.txt

扩展

502问题汇总 http://ask.apelearn.com/question/9109

location优先级 http://blog.lishiming.net/?p=100


Linux学习笔记十二周四次课(4月26日)

标签:nginx防盗链   nginx访问控制   Nginx解析php相关配置   Nginx代理   

原文地址:http://blog.51cto.com/12059818/2109027

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!