当前位置 : 主页 > 操作系统 > centos >

Apache网页与安全优化

来源:互联网 收集:自由互联 发布时间:2022-06-20
Apache网页与安全优化 Apache网页优化 网页压缩 网页缓存 Apache安全优化 隐藏版本信息 配置防盗链 Apache网页优化概念 [ ] 在企业中,部署Apache后只采用默认的配置参数,会引发网站很多问

Apache网页与安全优化

Apache网页优化

  • 网页压缩
  • 网页缓存

Apache安全优化

  • 隐藏版本信息
  • 配置防盗链

Apache网页优化概念

  • [ ] 在企业中,部署Apache后只采用默认的配置参数,会引发网站很多问题;换言之默认配置是针对以前较低的服务器配置的,以前的配置已经不适用当今互联网时代。
  • [ ] 为了适应企业需求,就需要考虑如何提升Apache的性能与稳定性,这就是Apache优化的内容。

优化内容

  • 配置网页压缩功能
  • 配置网页缓存
  • 工作模式的选择与参数优化
  • 配置隐藏版本号
  • 配置防盗链
  • ……

gzip介绍

  • [ ] 配置Apache的网页压缩功能,是使用gzip压缩算法来对网页内容进行压缩后再传输到客户端浏览器

作用

  • 降低了网络传输的字节数,加快网页加载的速度
  • 节省流量,改善用户的浏览体验
  • gzip与搜索引擎的抓取工具有着更好的关系

Apache的压缩模块

  • [ ] Apache实现网页压缩的功能模块包括
    • mod_gzip模块
    • mod deflate模块
  • [ ] Apache 1.x
    • 没有内建网页压缩技术,但可使用第三方mod_gzip模块执行压缩
  • [ ] Apache 2.x

    • 在开发的时候,内建了mod_deflate这个模块,取代mod_gzip
  • [ ] mod_gzip模块与mod_deflate模块
    • 两者均使用gzip压缩算法,运作原理类似
    • mod_deflate压缩速度略快,而mod_gzip的压缩比略高
    • mod_gzip对服务器CPU的占用要高一些
    • 高流量的服务器,使用mod_deflate可能会比mod_gzip加载速度更快

配置网页压缩功能

访问压缩文件.png

网页压缩

1.检查是否安装mod_deflate模块

apachectl -t -D DUMP_MODULES | grep "deflate"

查看是否安装mod_f.png

2.如果没有安装mod_deflate模块,重新编译安装Apache添加mod_deflate模块

systemctl stop httpd.service cd /usr/local/httpd/conf mv httpd.conf httpd.conf.bak yum -y install gcc gcc-c++ pcre pcre-devel zlib-devel cd /opt/httpd-2.4.29/ ./configure \ --prefix=/usr/local/httpd \ --enable-so \ --enable-rewrite \ --enable-charset-lite \ --enable-cgi \ --enable-deflate #加入mod_deflate模块 make && make install

重新安装apache.png

安装模块。。.png

重启安装.png

3.配置mod_deflate模块启用

vim /usr/local/httpd/conf/httpd.conf --52行--修改 Listen 192.168.80.20:80 --105行--取消注释 LoadModule deflate_module modules/mod_deflate.so #开启mod_deflate模块 --199行--取消注释,修改 ServerName www.xxx.com:80 -----末行添加----- <IfModule mod deflate.c> AddOutputFilterByType DEFLATE text/html text/plain text/css text/xml text/javascript text/jpg text/png #代表对什么样的内容启用gzip压缩 DeflateCompressionLevel 9 #代表压缩级别,范围为1~9 SetOutputFilter DEFLATE #代表启用deflate模块对本站点的输出进行gzip压缩 </IfModule>

重设IP地址.png

开启模块.png

设置域名.png

末行加入.png

4.检查安装情况,启动服务

apachectl -t #验证配置文件的配置是否正确 apachectl -t -D DUMP_MODULES | grep "deflate" #检查mod_deflate模块是否已安装 deflate_module (shared) #已安装的正确结果 systemctl start httpd

检查情况开启服务.png

5.测试缓存是否生效

cat /usr/local/httpd/htdocs/index.html 方法一: 在Linux系统中,打开火狐浏览器,右击点查看元素 选择网络 ---> 选择HTML、ws、其他 访问http://192.168.80.20,双击200消息查看响应头中包含Expires项 方法二: 在Windows系统中依次安装Microsoft.NET4和fiddler软件,打开fiddler软件 选择inspectors ---> 选择Headers 浏览器访问http://192.168.80.20,双击200消息查看Expires项

导入图片.png

编辑网页文件.png

网站成功.png


隐藏版本信息

  • [ ] Apache的版本信息,透露了一定的信息,从而给网站带来安全隐患
  • [ ] 生产环境中要配置Apache隐藏版本信息

配置Apache隐藏版本信息

  • 将主配置文件httpd.conf以下行注释去掉

    • #Include conf/extra/httpd-default.conf

    • 修改httpd-default.conf文件
    • ServerTokens Full修改为Server Tokens Prod
  • 重启httpd服务,访问验证
vim lusr/local/httpd/conf/httpd.conf --491行--取消注释 Include conf/extra/httpd-default.conf vim /usr/local/httpd/conf/extra/httpd-default.conf --55行--修改 ServerTokens Prod #将原本的Full 改为Prod,只显示名称,没有版本 #ServerTokens表示Server回送给客户端的响应头域是否包含关于服务器OS类型和编译过的模块描述信息。 systemctl restart httpd.service 浏览器访问http://192.168.80.20,双击200消息查看Server项

取消注释indefa.png

修改.png

重启服务隐藏.png

隐藏版本信息.png


配置Apache实现防盗链

  • [ ] 防盗链是防止别人的网站代码里面盗用我们自己<u>服务器</u>上的图片、文件、视频等相关资源
  • [ ] <u>如果别人盗用网站的这些静态资源</u>,明显的是会增大服务器的<u>带宽</u>压力
  • [ ] 作为网站的维护人员,要使用防盗链<u>杜绝服务器的静态资源被其他网站盗用</u>

网站缓存我.png

1.检查是否安装mod_rewrite 模块

vim /etc/httpd.conf --157行--取消注释 apachectl -t -D DUMP_MODULES | grep "rewrite"

取消注释so.png

检查是否安装模块mod.png

2.如果没有安装mod_rewrite模块,重新编译安装 Apache 添加 mod_rewrite模块

systemctl stop httpd.service cd /usr/ local/httpd/ conf mv httpd.conf httpd.conf. bak2 yum -y install gcc gcc-c++ pcre pcre-devel zlib-develcd lopt/httpd-2.4.29/ ./configure \ --prefix=/usr/local/httpd \ --enable-so \ --enable-rewrite \ #加入mod_rewrite模块 --enable-charset-lite \ --enable-cgi \ --enable-deflate \ --enable-expires make && make install

重新安装apache.png

安装模块。。.png

重启安装.png

3.配置mod_rewrite模块启用

vim /usr/local/httpd/conf/httpd.conf --157行--取消注释//上面已经做过 LoadModule rewrite_module modules/mod_rewrite.so --224行-- <Directory "/usr/local/httpd/htdocs"> Options Indexes FollowSymLinks AllowOverride None Require all granted #默认即可 -----下面写入----- RewriteEngin #打开rewrite功能,加入mode_rewrite模块内容 RewriteCond %{HTTP_REFERER} !^http://benet.com/.*$ [NC] #设置匹配规则 RewriteCond %{HTTP_REFERER} !^http://benet.com$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.benet.com/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.benet.com/$ [NC] RewriteRule .*\.(gif|jpg|swf)$ http://www.benet.com/error.png #设置跳转动作 </Directory> ------------------------------ RewriteCond %{HTTP_REFERER} !^http://www.benet.com/.*$ [NC]的字段含义: "%{HTTP_REFERER}":存放一个链接的URL,就是一个路径,用户访问网站时的路径。 "!^":表示不以后面的字符串开头。 "http://www.benet.com/.*$":上面的路径跟后面的正则表达式比较,只要匹配上就会执行下面的跳转。 ".*$":表示以任意字符结尾。 "[NC]":表示不区分大小写字母。 systemctl restart httpd.service

默认即可.png

设置添加文件.png

添加路径html.png

加入防盗图片.png

防盗链结果.png


网友评论