本文共 3629 字,大约阅读时间需要 12 分钟。
11.25 配置防盗链
编辑虚拟主机配置文件:
[root@centos-01inux ~]# vim /usr/local/apache2.4/conf/extra/httpd-vhosts.conf
<VirtualHost *:80>DocumentRoot "/data/wwwroot/111.com"ServerName 111.comServerAlias www.example.com<Directory /data/wwwroot/111.com>SetEnvIfNoCase Referer "" local_refSetEnvIfNoCase Referer "" local_refSetEnvIfNoCase Referer "^$" local_ref#定义referer白名单<FilesMatch ".(txt|doc|mp3|zip|rar|jpg|gif|png)">Order Allow,DenyAllow from env=local_ref#定义规则:允许变量local_ref指定的referer访问,拒绝其他所有访问。 </FilesMatch></Directory>检测语法错误并重载:
[root@centos-01inux ~]# /usr/local/apache2.4/bin/apachectl -tSyntax OK[root@centos-01inux ~]# /usr/local/apache2.4/bin/apachectl graceful注: 如果在referer白名单中不加“^#”(空referer),直接访问指定内容将会被拒绝。curl命令
curl -e 指定referer
[root@centos-01inux ~]# curl -e "" -x192.168.239.187:80 111.com/567.jpg -I
编辑虚拟主机配置文件:
在配置文件加入如下参数:
[root@centos-01inux admin]# vim /usr/local/apache2.4/conf/extra/httpd-vhosts.conf……
<Directory /data/wwwroot/111.com/admin/>Order deny,allowDeny from allAllow from 127.0.0.1#只允许IP--127.0.0.1访问“/data/wwwroot/111.com/admin/”目录中的内容</Directory>……[root@centos-01inux admin]# /usr/local/apache2.4/bin/apachectl -t
Syntax OK[root@centos-01inux admin]# /usr/local/apache2.4/bin/apachectl graceful测试:
[root@centos-01inux admin]# curl -x127.0.0.1:80 111.com/admin/index.php121212更换IP访问:
[root@centos-01inux admin]# curl -x192.168.239.187:80 111.com/admin/index.php -IHTTP/1.1 403 ForbiddenDate: Wed, 02 Aug 2017 08:48:49 GMTServer: Apache/2.4.27 (Unix) PHP/5.6.30Content-Type: text/html; charset=iso-8859-1#报错(403)!!!即,只有指定IP--127.0.0.1可以访问该目录。
说明:本节用于设定指定IP访问指定目录的权限!
使用FilesMatch参数:
[root@centos-01inux admin]# vim /usr/local/apache2.4/conf/extra/httpd-vhosts.conf
……<Directory /data/wwwroot/111.com><FilesMatch admin.php(.*)>Order deny,allowDeny from allAllow from 127.0.0.1</FilesMatch></Directory>……[root@centos-01inux admin]# /usr/local/apache2.4/bin/apachectl -t
Syntax OK[root@centos-01inux admin]# /usr/local/apache2.4/bin/apachectl graceful[root@centos-01inux admin]# curl -x127.0.0.1:80 111.com/admin.php -I
HTTP/1.1 404 Not FoundDate: Thu, 22 Mar 2018 13:23:04 GMTServer: Apache/2.4.29 (Unix) PHP/5.6.30Content-Type: text/html; charset=iso-8859-1#因为访问的文件不存在,所以报错:404!
说明: 本节内容应用于对某些请求设定权限。
扩展:
apache几种限制ip的方法
禁止访问某些文件/目录
增加Files选项来控制,比如要不允许访问 .inc 扩展名的文件,保护php类库:
<Files~".inc$">
Order Allow,DenyDeny from all</Files>禁止访问某些指定的目录可以使用<DirectoryMatch> 正则匹配:
<Directory~"^/var/www/(.+/)*[0-9]{3}">
Order Allow,DenyDeny from all</Directory>也可以使用目录全局路径通过文件匹配来进行禁止,比如禁止所有针对图片的访问:
<FilesMatch .?i:gif|jpe?g|png)$>
Order Allow,DenyDeny from all<FilesMatch>针对URL相对路径的禁止访问<Location /dir/>
Order Allow,DenyDeny from all</Location>apache设置自定义header在设置自定义header前,需要先检测一下你的httpd(Apache)是否加载了mod_headers
[root@centos-01inux ~]# /usr/local/apache2/bin/apachectl -M如果没有加载,需要进行加载配置。
- 设置header
在Apache配置文件中加入下面参数:
Header add MyHeader "Hello"
apache的keepalive和keepalivetimeout在APACHE的httpd.conf中,KeepAlive指的是保持连接活跃,类似于Mysql的永久连接。换一句话说,如果将KeepAlive设置为On,那么来自同一客户端的请求就不需要再一次连接,避免每次请求都要新建一个连接而加重服务器的负担。
KeepAlive的连接活跃时间当然是受KeepAliveTimeOut限制的。如果第二次请求和第一次请求之间超过KeepAliveTimeOut的时间的话,第一次连接就会中断,再新建第二个连接。
所以,一般情况下,图片较多的网站应该把KeepAlive设为On。但是KeepAliveTimeOut应该设置为多少秒就是一个值得讨论的问题了。
如果KeepAliveTimeOut设置的时间过短,例如设置为1秒,那么APACHE就会频繁的建立新连接,当然会耗费不少的资源;反过来,如果KeepAliveTimeOut设置的时间过长,例如设置为300秒,那么APACHE中肯定有很多无用的连接会占用服务器的资源,也不是一件好事。
所以,到底要把KeepAliveTimeOut设置为多少,要看网站的流量、服务器的配置而定。
其实,这和MySql的机制有点相似,KeepAlive相当于mysql connect或mysql pconnect,KeepAliveTimeOut相当于wait_timeout。
转载于:https://blog.51cto.com/13242922/2083696