Nginx优化与防盗链

Nginx服务优化

查看方法

1.curl命令

curl -l http://IP

2.浏览器

浏览器 → 开发者工具(F12) → 选择network → 刷新页面(Ctrl +r) → 选择请求 → 选择 headlers → 查看版本

隐藏版本号

  1. 修改配置文件
  2. 修改源码

①修改配置文件

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.111

②修改源码文件(需要重新编译安装)

vim /opt/nginx-1.15.9/src/core/nginx.h

#define NGINX_VERSION      "7.7.7"
#define NGINX_VER          "LXX" NGINX_VERSION

配置软件模块

cd /opt/nginx-1.15.9/

./configure --prefix=/usr/local/nginx --user=nginx --group=nginx --with-http_stub_status_module

编译安装

make && make install

开启版本信息

vim /usr/local/nginx/conf/nginx.conf

改成server_tokens on;

查看版本信息

systemctl restart nginx

curl -I http://192.168.200.111

修改用户与组

vim /usr/local/nginx/conf/nginx.conf
user root root;                 #取消注释,修改用户为root,组为root

systemctl restart nginx

ps aux | grep nginx
主进程由root创建,子进程由nginx创建

缓存时间

vim /usr/local/nginx/conf/nginx.conf
http {
......
  server {
  ...... 
    location / {
      root html;
      index index.html index.htm;
    }
    
    location ~ \.(gif|jpg|jpeg|png|bmp|ico)$ {    #加入新的 location,以图片作为缓存对象
      root html;
      expires 1d;                 #指定缓存时间,1天
    }
......
  }
}

systemctl restart nginx

Nginx优化与防盗链_第1张图片

把图片导入 /usr/local/nginx/html

Nginx优化与防盗链_第2张图片

日志切割

vim /split.sh
#!/bin/bash

d=$(date -d "-1 day" "+%Y%m%d")                 #显示前一天的时间
logs_path="/var/log/nginx"
pid_path=`cat /usr/local/nginx/logs/nginx.pid`

[ -d $logs_path ] || mkdir -p $logs_path        #创建日志文件目录

#移动并重命名日志文件
mv /usr/local/nginx/logs/access.log ${logs_path}/lxx.com-access.log-{$d}

#重建日志文件
kill -USR1 $pid_path
#删除30天前的日志文件                   
find $logs_path -mtime +30 -exec rm -rf {} \;
#find $logs_path -mtime +30 |xargs rm -rf

crontab -e
0 1 * * * /root/decade.sh   #设置周期性计划

连接超时

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

vim /usr/local/nginx/conf/nginx.conf
http {
...... 
    keepalive_timeout 65 180;
    client_header_timeout 80;
    client_body_timeout 80;
...... 
}

systemctl restart nginx

keepalive_timeout​
​指定KeepAlive的超时时间(timeout)。指定每个TCP连接最多可以保持多长时间,服务器将会在这个时间后关闭连接。 Nginx的默认值是65秒,有些浏览器最多只保持 60 秒,所以可以设定为 60 秒。若将它设置为0,就禁止了keepalive 连接。​

​第二个参数(可选的)指定了在响应头Keep-Alive:timeout=time中的time值。这个头能够让一些浏览器主动关闭连接,这样服务器就不必去关闭连接了。没有这个参数,Nginx 不会发送 Keep-Alive 响应头。​

​client_header_timeout​
​客户端向服务端发送一个完整的 request header 的超时时间。如果客户端在指定时间内没有发送一个完整的 request header,Nginx 返回 HTTP 408(Request Timed Out)。​

client_body_timeout​
​指定客户端与服务端建立连接后发送 request body 的超时时间。如果客户端在指定时间内没有发送任何内容,Nginx 返回 HTTP 408(Request Timed Out)。
 

更改进程数

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处理,进程数配2 4 6 8分别为0001 0010 0100 1000 

systemctl restart nginx

配置网页压缩

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/html目录下
vim index.html
...... 
       #网页中插入图片



systemctl restart nginx

盗链和防盗链

盗链端:192.168.200.111  nginx

服务端(防盗链端):192.168.200.112  nginx

配置防盗链

vim /usr/local/nginx/conf/nginx.conf
http {
......
  server {
  ......
   location ~* \.(gif|jpg|jpeg|bmp|ico)$ {
           valid_referers *.lxxlh.com lxxlh.com;
           if ( $invalid_referer) {
              rewrite ^/ http://www.lxxlh.com/2.jpg;
        }
        }

  ......
  }
}

Nginx优化与防盗链_第3张图片

服务端配置(192.168.200.111)

cd /usr/local/nginx/html
将1.gif、2.jpg文件传到/usr/local/nginx/html目录下
vim index.html
...... 




echo "192.168.200.111 www.lxxlh.com" >> /etc/hosts 
echo "192.168.200.112 www.lxxnb.com" >> /etc/hosts

盗链端配置(192.168.200.112)

cd /usr/local/nginx/html
vim index.html
...... 




echo "192.168.200.111 www.lxxlh.com" >> /etc/hosts 
echo "192.168.200.112 www.lxxnb.com" >> /etc/hosts

验证?????????????

未完待续

你可能感兴趣的:(nginx)