一、配置Nginx隐藏版本号

  隐藏Nginx版本号,避免安全漏洞泄露

  可以使用Fiddler工具抓取数据包,查看Nginx版本;也可以在CentOS中使用 curl -I http://192.168.100.20 显示响应报文首部信息。

  1.1 方法一:修改配置文件方式

1
2
3
4
5
6
7
8
9
10
11
vim /usr/local/nginx/conf/nginx.conf
 
http {
      include     mime.types;
      default_type    application/octet-stream;
      server_tokens off;                   #添加,关闭版本号
      ……
}
 
systemctl restart nginx
curl -I http://192.168.200.10

 Nginx优化与防盗链_html

 

 Nginx优化与防盗链_缓存_02

 

  1.2 修改源码文件,重新编译安装

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
vim /opt/nginx-1.12.0/src/core/nginx.h
#define NGINX_VERSION "1.1.1"        #修改版本号
#define NGINX_VER "IIS" NGINX_VERSION        #修改服务器类型
 
cd /opt/nginx-1.12.0/
./configure --prefix=/usr/local/nginx --user=nginx --group=nginx --with-http_stub_status_module
make && make install
 
vim /usr/local/nginx/conf/nginx.conf
http {
    include    mime.types;
    default_type    application/octet-stream;
    server_tokens on;
    ……
}
 
systemctl restart nginx
curl -I http://192.168.200.10

Nginx优化与防盗链_nginx_03

 

 Nginx优化与防盗链_vim_04

 

 Nginx优化与防盗链_vim_05

 

 Nginx优化与防盗链_客户端_06

 

   2、修改用户与组

1
2
3
4
5
6
7
vim /usr/local/nginx/conf/nginx.conf
user nginx nginx;       #取消注释,修改用户为nginx,组为nginx
 
systemctl restart nginx
 
ps aux | grep nginx
#主进程由root创建,子进程由nginx创建

Nginx优化与防盗链_缓存_07

  3、缓存时间

当Nginx将网页数据返回给客户端后,可设置缓存的时间,以方便在日后进行相同内容的请求时直接返回,避免重复请求,加快了访问速度。一般针对静态网页设置,对动态网页不设置缓存时间

Nginx优化与防盗链_nginx_08
vim /usr/ local/nginx/conf/nginx. conf
http {
server {
location /I {
root html;
index index.html index. htm;
}
location ~ \. (gif|jpg|jepg|png|bmp|ico)$ {
#加入新的location, 以图片作为缓存对象
root html ;
expires 1d;
#指定缓存时间,1天
http://www.kgc.com/ wangsicong. ipg
systemctl restart nginx
Nginx优化与防盗链_nginx_08

在Linux系统中,打开火狐浏览器,右击点查看元素

选择网络——>选择HTML、WS、其他

访问http://192.168.80.10/game. jpg ,双击200响应消息查看响应头中包含Cahce-Control :max - age=86400 表示缓存时间是86400秒。也就是缓存一天的时间,一天之内浏览器访问这个页面,都是用缓存中的数据,而不需要向Nginx服务器重新发出请求,减少了服务器的使用带宽。
Nginx优化与防盗链_客户端_10

Nginx优化与防盗链_缓存_11

 

   4、日志切割

Nginx优化与防盗链_nginx_08
vim /opt/ fenge.sh
#! /bin/bash
# Filename: fenge. sh
day=$(date -d "-1 day" "+%Y%m%d")          #显示前一天的时间
logs_ path=" /var/log/nginx"
pid_ path="/usr/local/nginx/logs/nginx.pid"
[ -d $logs_ path ] || mkdir -p $logs_ path        #创建日志文件目录
mv /usr/local/nginx/ logs/access.log ${logs_ path}/kgc. com- access.1og- $day      #移动并重命名日志文件
kill -USR1 $(cat $pid_ path)       #重建新日志文件
find $logs path -mtime +30 -exec rm -rf {} \;      #删除30天之前的日志文件
#find $logs_ path -mtime +30 | xargs rm -rf
chmod +x /opt/ fenge.sh
/opt/ fenge .sh
ls /var/log/nginx
ls /usr/local/nginx/1ogs/access. log
crontab -e
0 1 * * * /opt/fenge .sh
Nginx优化与防盗链_nginx_08

补充:

  在linux操作系统中,每个文件都有很多的时间参数,其中有三个比较主要,分别是ctime,atime,mtime
ctime (status time) :
  当修改文件的权限或者属性的时候,就会更新这个时间,ctime并不是create time,更像是change time,只有当更新文件的属性或者权限的时候才会更新这个时间,但是更改内容的话是不会更新这个时间。
atime (adcesstime) :
  当使用这个文件的时候就会更新这个时间。
mt. ime (modi fication time) :
  当修改文件的内容数据的时候,就会更新这个时间,而更改权限或者属性,mtime不会改变,这就是和ctime的区别。
Nginx优化与防盗链_nginx_14

 

   5、连接超时

  HTTP有一个KeepAlive模式,它告诉web服务器在处理完一个请求后保持这个TCP连接的打开状态。若接收到来自同一客户端的其它请求,服务端会利用这个未被关闭的连接,而不需要再建立一个连接。
  KeepAlive在一段时间内保持打开状态,它们会在这段时间内占用资源。占用过多就会影响性能。

 

Nginx优化与防盗链_nginx_08
http {
.....
keepalive_ timeout 65 180;
client_ header_ timeout 80;
client_ body_ timeout 80;
......
}
systemctl restart nginx
Nginx优化与防盗链_nginx_08

补充:

keepalive_ timeout
  指定KeepAlive的超时时间(timeout)。指定每个TCP连接最多可以保持多长时间,服务器将会在这个时间后关闭连接。
  Nginx的默认值是65秒,有些浏览器最多只保持60秒,所以可以设定为60秒。若将它设置为0,就禁止了keepalive连接。
  第二个参数(可选的)指定了在响应头Keep-Alive:timeout=time中的time值。这个头能够让--些浏览器主动关闭连接,这样服务器就不必去关闭连接了。没有这个参数,Nginx不会发送Keep- Alive响应头。
client_ header_ t imeout
  客户端向服务端发送一个完整的request header 的超时时间。如果客户端在指定时间内没有发送一个完整的request header, Nginx返回HTTP 408 (Request Timed Out)。
client_ body_ timeout
  指定客户端与服务端建立连接后发送requestbody的超时时间。|如果客户端在指定时间内没有发送任何内容,Nginx返回HTTP408 ( Request Timed Out)。
Nginx优化与防盗链_nginx_17

 

 Nginx优化与防盗链_客户端_18

 

  6、更改进程数

  在高并发场景,需要启动更多的Nginx进程以保证快速响应,以处理用户的请求,避免造成阻塞
Nginx优化与防盗链_nginx_08
cat /proc/cpuinfo | grep -C "physical id"      #查看cpu核数
ps aux| grep nginx        #查看nginx主进程中包含几个子进程

vim /usr/local/nginx/conf/nginx. conf
worker_processes     2;             #修改为核数相同或者2倍.
worker_ cpu_ affinity 01 10;       #设置每个进程由不同cpu处理,进程数配为4时00010010 0100 1000

systemctl restart nginx
Nginx优化与防盗链_nginx_08

Nginx优化与防盗链_html_21

 

   7、配置网页压缩

Nginx的ngx_ http_gzip_ module压缩模块提供对文件内容压缩的功能
允许Nginx服务器将输出内容在发送客户端之前进行压缩,以节约网站带宽,提升用户的访问体验,默认已经安装
可在配置文件中加入相应的压缩功能参数对压缩性能进行优化
Nginx优化与防盗链_nginx_08
vim /usr/local/nginx/conf/nginx.conf
http {
.......
    gzip on;       #取消注释,开启gzip压缩功能
   gzip_min_length 1k;        #最小压缩文件大小
   gzip_buffers 4 64k;        #压缩缓冲区,大小为4个64k缓冲区
   gzip_http_version 1.1;     #压缩版本(默认1.1,前端如果是squid2.5请使用1.0)
   gzip_comp_level 6;         #压缩比率
   gzip_vary on;     #支持前端缓存服务器存储压缩页面
   gzip_types text/plain text/javascript application/x-javascript 
   text/css text/xml application/xml application/xml+rss image/jpg image/jpeg image/png image/gif application/x-httpd-php application/javascript application/json;  #压缩类型,表示哪些网页文档启用压缩功能
......
}
 

cd /usr/local/nginx/html
#先将game. jpg文件传到/usr/local/nginx/htm1日录下
 
vim index. html
........
<img src="game .jpg"/> #网页中插入图片
</body>
< /html>
 
systemctl restart nginx
Nginx优化与防盗链_nginx_08

在Linux系统中,打开火狐浏览器,右击点查看元素

选择网络——>选择HTML、WS、其他

访问http://192.168.80.10/game. jpg ,双击200响应消息查看响应头中包含Content-Encoding:gzip
Nginx优化与防盗链_nginx_24

 

 Nginx优化与防盗链_html_25

 

 

  8、配置防盗链
Nginx优化与防盗链_nginx_08
vim /usr/local/nginx/conf/nginx . conf
http {
......
server {
......
location ~* \. (jpg|gif|swf)$ {
valid_ referers none blocked *.kgc.com kgc.com;
if ( $invalid_referer ) {
rewrite ^/ http://www. kgc. com/error.png;
#return 403;
}
}
.....
}
}
Nginx优化与防盗链_nginx_08
~* \. (jpg|gif|swf)$ :这段正则表达式表示匹配不区分大小写,以.jpg 或.gif或.swf结尾的文件;
valid_ referers :设置信任的网站,可以正常使用图片;
none:允许没有http_refer的请求访问资源(根据Referer的定义,它的作用是指示一个请求是从哪里链接过来的,如果直接在浏览器的地址栏中输入一个资源的URL地址,那么这种请求是不会包含Referer字段的),如http://www. kgc. com/game.jpg
我们使用http://www. kgc.com访问显示的图片,可以理解成http://www. kgc. com/game.jpg这个请求是从http://www. kgc.com这个链接过来的。
blocked: 允许不是http://开头的,不带协议的请求访问资源;
*. kgc.com: 只允许来自指定域名的请求访问资源,如http://www.kgc. com
if语句:如果链接的来源域名不在valid_ referers所列出的列表中,$invalid_ referer为true, 则执行后面的操作,即进行重写或返回403页面。
  8.1 网页准备
  Web源主机(192.168.80.200)配置:
Nginx优化与防盗链_nginx_08
cd /usr/local/nginx/html
 
#将game.jpg、error.png文件传到/usr/local/nginx/html目录下
 vim index.html
 
<img src="1.jpg"/>
</body>
</html>
 
echo "192.168.153.20 www.kgc.com" >> /etc/hosts
Nginx优化与防盗链_nginx_08

  盗链网站主机(192.168.80.111):

Nginx优化与防盗链_nginx_08
cd /var/www/html
 
vim index.html
 
......
<img src="http://www.kgc.com/game.jpg"/>
</body>
</html>
 
echo "192.168.153.20 www.kgc.com" >> /etc/hosts
echo "192.168.153.30 www.clj.com" >> /etc/hosts
Nginx优化与防盗链_nginx_08

  在盗图网站主机进行浏览器验证    http://www.clj.com

Nginx优化与防盗链_nginx_32

 

 Nginx优化与防盗链_vim_33

 Nginx优化与防盗链_html_34