Nginx

Nginx简介

Nginx是开源、高性能、高可靠的 Web 和反向代理服务器,而且支持热部署,同时也提供了 IMAP/POP3/SMTP 服务,可以不间断运行,提供热更新功能。占用内存少、并发能力强,最重要的是,Nginx 是免费的并可以商业化,配置使用都比较简单。
2021-05-24-15-40-29-905085.png

Nginx 特点

  • 高并发、高性能
  • 模块化架构使得它的扩展性非常好
  • 异步非阻塞的事件驱动模型这点和 Node.js 相似
  • 无需重启可不间断运行
  • 热部署、平滑升级
  • 完全开源,生态好

    Nginx 最重要的几个使用场景

  • 静态资源服务

  • 反向代理服务,包括缓存、负载均衡等
  • API 服务,OpenResty

整理一份 Nginx的常用配置清单,主要包括以下三个方面:

  • 基础配置
  • 高级配置
  • 安全配置

    基础配置

    去掉不用的 Nginx 模块

    1. ./configure --without-module1 --without-module2 --without-module3
    例如:
    1. ./configure --without-http_dav_module --withouthttp_spdy_module
    2. #注意事项:配置指令是由模块提供的。确保你禁用的模块不包含你需要使用的指令!在决定禁用模块之前,应该检查Nginx文档中每个模块可用的指令列表。

    Nginx 版本的平滑升级与回滚

    进程相关的配置

    ```nginx worker_processes 8;

    Nginx 进程数,建议按照CPU数目来指定,一般为它的倍数 (如,2个四核的CPU计为8)。

worker_rlimit_nofile 65535;

一个Nginx 进程打开的最多文件描述符数目

worker_connections 65535;

每个进程允许的最多连接数

  1. <a name="zCvmZ"></a>
  2. ### 监听端口
  3. ```nginx
  4. server {
  5. listen 80; #监听端口
  6. server_name www.mingongge.com; #域名信息
  7. location / {
  8. root /www/www; #网站根目录
  9. index index.html index.htm; #默认首页类型
  10. deny 192.168.2.11; #禁止访问的ip地址,可以为all
  11. allow 192.168.3.44; #允许访问的ip地址,可以为all
  12. }
  13. }

补充:域名匹配的四种写法
精确匹配:server_name www.mingongge.com ;
左侧通配:server_name *.mingongge.com ;
右侧统配:server_name www.mingongge.* ;
正则匹配:server_name ~^www\.mingongge\.*$ ;
匹配优先级:精确匹配 > 左侧通配符匹配 > 右侧通配符匹配 > 正则表达式匹配

配置 Nginx 状态页面

  1. [root@proxy ~]# cat /usr/local/nginx/conf/nginx.conf
  2. location /NginxStatus {
  3. stub_status on;
  4. access_log on;
  5. auth_basic "NginxStatus";
  6. auth_basic_user_file conf/htpasswd;
  7. }
  8. [root@proxy ~]# /usr/local/nginx/sbin/nginx -s reload

Nginx 日志(访问与错误日志管理)

  1. error_log /var/log/nginx/error.log warn;
  2. #配置错误日志的级别及存储目录
  3. events {
  4. worker_connections 1024;
  5. }
  6. http {
  7. ..................
  8. log_format main '$remote_addr - $remote_user [$time_local] "$request" '
  9. '$status $body_bytes_sent "$http_referer" '
  10. '"$http_user_agent" "$http_x_forwarded_for"';
  11. #配置日志的模式
  12. access_log /var/log/nginx/access.log main;
  13. #配置访问日志存储目录
  14. }

以上配置只是Nginx自身关于日志的基本配置,在实际生产环境中,需要收集日志、分析日志,才定更好的去定位问题。

http 相关的配置

  1. http {
  2. sendfile on #高效传输文件的模式 一定要开启
  3. keepalive_timeout 65 #客户端服务端请求超时时间
  4. }

静态资源配置

  1. server {
  2. listen 80;
  3. server_name mingongge.com;
  4. location /static {
  5. root /wwww/web/web_static_site;
  6. }
  7. }

也可以使用下面的方法

  1. location /image {
  2. alias /web/nginx/static/image/;
  3. }

:::tips 注意:使用alias末尾一定要添加/,并且它只能位于location中 :::

反向代理

比如生产环境(同一台服务中)有不同的项目,这个就比较实用了,用反向代理去做请示转发。

  1. http {
  2. .............
  3. upstream product_server{
  4. 127.0.0.1:8081;
  5. }
  6. upstream admin_server{
  7. 127.0.0.1:8082;
  8. }
  9. upstream test_server{
  10. 127.0.0.1:8083;
  11. }
  12. server {
  13. #默认指向product的server
  14. location / {
  15. proxy_pass http://product_server;
  16. }
  17. location /product/{
  18. proxy_pass http://product_server;
  19. }
  20. location /admin/ {
  21. proxy_pass http://admin_server;
  22. }
  23. location /test/ {
  24. proxy_pass http://test_server;
  25. }
  26. }
  27. }

负载均衡

  1. upstream server_pools {
  2. server 192.168.1.11:8880 weight=5;
  3. server 192.168.1.12:9990 weight=1;
  4. server 192.168.1.13:8989 weight=6;
  5. #weigth参数表示权值,权值越高被分配到的几率越大
  6. }
  7. server {
  8. listen 80;
  9. server_name mingongge.com;
  10. location / {
  11. proxy_pass http://server_pools;
  12. }
  13. }

代理相关的其它配置

  1. proxy_connect_timeout 90; #nginx跟后端服务器连接超时时间(代理连接超时)
  2. proxy_send_timeout 90; #后端服务器数据回传时间(代理发送超时)
  3. proxy_read_timeout 90; #连接成功后,后端服务器响应时间(代理接收超时)
  4. proxy_buffer_size 4k; #代理服务器(nginx)保存用户头信息的缓冲区大小
  5. proxy_buffers 4 32k; #proxy_buffers缓冲区
  6. proxy_busy_buffers_size 64k; #高负荷下缓冲大小(proxy_buffers*2)
  7. proxy_temp_file_write_size 64k; #设定缓存文件夹大小
  8. proxy_set_header Host $host;
  9. proxy_set_header X-Forwarder-For $remote_addr; #获取客户端真实IP

高级配置

重定向配置

  1. location / {
  2. return 404; #直接返回状态码
  3. }
  4. location / {
  5. return 404 "pages not found"; #返回状态码 + 一段文本
  6. }
  7. location / {
  8. return 302 /blog ; #返回状态码 + 重定向地址
  9. }
  10. location / {
  11. return https://www.mingongge.com ; #返回重定向地址
  12. }

示例如下

  1. server {
  2. listen 80;
  3. server_name www.mingongge.com;
  4. return 301 http://mingongge.com$request_uri;
  5. }
  6. server {
  7. listen 80;
  8. server_name www.mingongge.com;
  9. location /cn-url {
  10. return 301 http://mingongge.com.cn;
  11. }
  12. }
  13. server{
  14. listen 80;
  15. server_name mingongge.com; # 要在本地hosts文件进行配置
  16. root html;
  17. location /search {
  18. rewrite ^/(.*) https://www.mingongge.com redirect;
  19. }
  20. location /images {
  21. rewrite /images/(.*) /pics/$1;
  22. }
  23. location /pics {
  24. rewrite /pics/(.*) /photos/$1;
  25. }
  26. location /photos {
  27. }
  28. }

设置缓冲区容量上限

这样的设置可以阻止缓冲区溢出攻击(同样是Server模块)

  1. client_body_buffer_size 1k;
  2. client_header_buffer_size 1k;
  3. client_max_body_size 1k;
  4. large_client_header_buffers 2 1k;
  5. #设置后,不管多少HTTP请求都不会使服务器系统的缓冲区溢出了

限制最大连接数

在http模块内server模块外配置limit_conn_zone,配置连接的IP,在http,server或location模块配置

  1. limit_conn,能配置IP的最大连接数。
  2. limit_conn_zone $binary_remote_addr zone=addr:5m;
  3. limit_conn addr 1;

Gzip压缩

  1. gzip_types
  2. #压缩的文件类型
  3. text/plain text/css
  4. application/json
  5. application/x-javascript
  6. text/xml application/xml
  7. application/xml+rss
  8. text/javascript
  9. gzip on;
  10. #采用gzip压缩的形式发送数据
  11. gzip_disable "msie6"
  12. #为指定的客户端禁用gzip功能
  13. gzip_static;
  14. #压缩前查找是否有预先gzip处理过的资源
  15. gzip_proxied any;
  16. #允许或者禁止压缩基于请求和响应的响应流
  17. gzip_min_length 1000;
  18. #设置对数据启用压缩的最少字节数
  19. gzip_comp_level 6;
  20. #设置数据的压缩等级

缓存配置

  1. open_file_cache
  2. #指定缓存最大数目以及缓存的时间
  3. open_file_cache_valid
  4. #在open_file_cache中指定检测正确信息的间隔时间
  5. open_file_cache_min_uses
  6. #定义了open_file_cache中指令参数不活动时间期间里最小的文件数
  7. open_file_cache_errors
  8. #指定了当搜索一个文件时是否缓存错误信息
  9. location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
  10. #指定缓存文件的类型
  11. {
  12. expires 3650d;
  13. #指定缓存时间
  14. }
  15. location ~ .*\.(js|css)?$
  16. {
  17. expires 3d;
  18. }

SSL 证书配及跳转HTTPS配置

  1. server {
  2. listen 192.168.1.250:443 ssl;
  3. server_tokens off;
  4. server_name mingonggex.com www.mingonggex.com;
  5. root /var/www/mingonggex.com/public_html;
  6. ssl_certificate /etc/nginx/sites-enabled/certs/mingongge.crt;
  7. ssl_certificate_key /etc/nginx/sites-enabled/certs/mingongge.key;
  8. ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
  9. }
  10. # Permanent Redirect for HTTP to HTTPS
  11. server
  12. {
  13. listen 80;
  14. server_name mingongge.com;
  15. https://$server_name$request_uri;
  16. }

流量镜像功能

  1. location / {
  2. mirror /mirror;
  3. proxy_pass http://backend;
  4. }
  5. location = /mirror {
  6. internal;
  7. proxy_pass http://test_backend$request_uri;
  8. }

限流功能

流量限制配置两个主要的指令,limit_req_zonelimit_req

  1. limit_req_zone $binary_remote_addr zone=mylimit:10m rate=10r/s;
  2. server {
  3. location /login/ {
  4. limit_req zone=mylimit;
  5. proxy_pass http://my_upstream;
  6. }
  7. }

Nginx常用的内置变量

2021-05-24-15-40-30-030076.png

安全配置

禁用server_tokens项

server_tokens在打开的情况下会使404页面显示Nginx的当前版本号。这样做显然不安全,因为黑客会利用此信息尝试相应Nginx版本的漏洞。只需要在nginx.conf中http模块设置server_tokens off即可,例如:

  1. server {
  2. listen 192.168.1.250:80;
  3. Server_tokens off;
  4. server_name mingongge.com www.mingongge.com;
  5. access_log /var/www/logs/mingongge.access.log;
  6. error_log /var/www/logs/mingonggex.error.log error;
  7. root /var/www/mingongge.com/public_html;
  8. index index.html index.htm;
  9. }
  10. #重启Nginx后生效

禁止非法的HTTP User Agents

User Agent是HTTP协议中对浏览器的一种标识,禁止非法的User Agent可以阻止爬虫和扫描器的一些请求,防止这些请求大量消耗Nginx服务器资源。
为了更好的维护,最好创建一个文件,包含不期望的user agent列表例如/etc/nginx/blockuseragents.rules包含如下内容:

  1. map $http_user_agent $blockedagent {
  2. default 0;
  3. ~*malicious 1;
  4. ~*bot 1;
  5. ~*backdoor 1;
  6. ~*crawler 1;
  7. ~*bandit 1;
  8. }

然后将如下语句放入配置文件的server模块内

  1. include /etc/nginx/blockuseragents.rules;

并加入if语句设置阻止后进入的页面:

阻止图片外链

  1. location /img/ {
  2. valid_referers none blocked 192.168.1.250;
  3. if ($invalid_referer) {
  4. return 403;
  5. }
  6. }

封杀恶意访问

禁掉不需要的 HTTP 方法

一些web站点和应用,可以只支持GET、POST和HEAD方法。在配置文件中的 server模块加入如下方法可以阻止一些欺骗攻击

  1. if ($request_method !~ ^(GET|HEAD|POST)$) {
  2. return 444;
  3. }

禁止 SSL 并且只打开 TLS

尽量避免使用SSL,要用TLS替代,以下配置可以放在Server模块内

  1. ssl_protocols TLSv1 TLSv1.1 TLSv1.2;