您的位置:首页 > 运维架构 > 反向代理

Nginx配置文件详细说明,包括基本配置,反向代理配置,expire缓存过期,适合接入CDN的配置

2018-01-09 11:19 976 查看
更多DNS地址欢迎访问:http://www.dnsdizhi.com/

Nginx服务器nginx.conf的配置文件的详细说明, 包括nginx基本配置,负载均衡、反向代理、正则匹配、location、ReWrite语法、301及302 Redirect重定向配置、防盗链、浏览器缓存过期时间expire(max-age)、nginx相关的全局变量。读本文基本可以完成nginx基本配置,反向代理,适合接入CDN的配置。

一、以下是一些基本的配置,使用Nginx最大的好处就是负载均衡

#运行用户

user www;    

#启动进程,通常设置成和cpu的数量相等

worker_processes  4;

#全局错误日志及PID文件

error_log  /usr/local/nginx/error.log;

pid        /var/run/nginx.pid;

#工作模式及连接数上限

events {

    use   epoll;             #epoll是多路复用IO(I/O Multiplexing)中的一种方式,但是仅用于linux2.6以上内核,可以大大提高nginx的性能

    worker_connections  10240;#单个后台worker process进程的最大并发链接数

    # multi_accept on; 

}

#设定http服务器,利用它的反向代理功能提供负载均衡支持

http {

     #设定mime类型,类型由mime.type文件定义

    include       /usr/local/nginx/mime.types;

    default_type  application/octet-stream;

    #设定日志格式

    access_log    /var/log/nginx/access.log;

    #sendfile 指令指定 nginx 是否调用 sendfile 函数(zero copy 方式)来输出文件,对于普通应用,

    #必须设为 on,如果用来进行下载等应用磁盘IO重负载应用,可设置为 off,以平衡磁盘与网络I/O处理速度,降低系统的uptime.

    sendfile        on;

    #tcp_nopush     on;

    #连接超时时间

    #keepalive_timeout  0;

    keepalive_timeout  120;

    tcp_nodelay        on;

    

    #开启gzip压缩,对IE

    gzip  on;

    gzip_disable "MSIE [1-6]\.(?!.*SV1)";

    #设定请求缓冲

    client_header_buffer_size    1k;

    large_client_header_buffers  4 4k;

    include /usr/local/nginx/conf.d/*.conf;

    include /usr/local/nginx/sites-enabled/*;

    #设定负载均衡的服务器列表

     upstream mysvr {

    #weigth参数表示权值,权值越高被分配到的几率越大

    #本机上的Squid开启3128端口

    server 192.168.8.1:3128 weight=5;

    server 192.168.8.2:80  weight=1;

    server 192.168.8.3:80  weight=6;

    }

   server {

    #侦听80端口

        listen       80;

        #定义使用www.xxx.com访问

        server_name  www.xxx.com;

        #设定本虚拟主机的访问日志

        access_log  logs/www.xxx.com.access.log  main;

    #默认请求

    location / {

          root   /root;      #定义服务器的默认网站根目录位置

          index index.php index.html index.htm home.html;   #定义首页索引文件名

          fastcgi_pass  www.xxx.com;

         fastcgi_param  SCRIPT_FILENAME  $document_root/$fastcgi_script_name; 

          include /usr/local/nginx/fastcgi_params;

        }

    # 定义错误提示页面

    error_page   500 502 503 504 /50x.html;  

        location = /50x.html {

        root   /hom/wwwroot;

    }

    #静态文件,nginx自己处理

    location ~ ^/(images|javascript|js|css|flash|media|static)/ {

        root /home/wwwroot/virtual/htdocs;

        #过期30天,静态文件不怎么更新,过期可以设大一点,如果频繁更新,则可以设置得小一点。

        expires 30d;

    }

    #PHP 脚本请求全部转发到 FastCGI处理. 使用FastCGI默认配置.

    location ~ \.php$ {

        root /root;

        fastcgi_pass 127.0.0.1:9000;

        fastcgi_index index.php;

        fastcgi_param SCRIPT_FILENAME /home/wwwroot/www$fastcgi_script_name;

        include fastcgi_params;

    }

    #设定查看Nginx状态的地址

    location /NginxStatus {

        stub_status            on;

        access_log              on;

        auth_basic              "NginxStatus";

        auth_basic_user_file  conf/htpasswd;

    }

    #禁止访问 .htxxx 文件--建议直接删除这类文件,nginx不支持

    location ~ /\.ht {

        deny all;

    }

     

     }

}

二、nginx负载均衡配置,可以修改配置http节点如下:

#设定http服务器,利用它的反向代理功能提供负载均衡支持

http {

     #设定mime类型,类型由mime.type文件定义

    include       /usr/local/nginx/mime.types;

    default_type  application/octet-stream;

    #设定日志格式

    access_log    /var/log/nginx/access.log;

    #省略上文有的一些配置节点

    #设定负载均衡的服务器列表

     upstream mysvr {

    #weigth参数表示权值,权值越高被分配到的几率越大

    server 192.168.8.1x:3128 weight=5;#本机上的Squid开启3128端口

    server 192.168.8.2x:80  weight=1;

    server 192.168.8.3x:80  weight=6;

    }

   upstream mysvr2 {

    #weigth参数表示权值,权值越高被分配到的几率越大

    server 192.168.8.x:80  weight=1;

    server 192.168.8.x:80  weight=6;

    }

   #第一个虚拟服务器

   server {

    #侦听192.168.8.x的80端口

        listen       80;

        server_name  192.168.8.x;

      #对aspx后缀的进行负载均衡请求

    location ~ .*\.aspx$ {

         root   /root;      #定义服务器的默认网站根目录位置

          index index.php index.html index.htm;   #定义首页索引文件的名称

          proxy_pass  http://mysvr ;#请求转向mysvr 定义的服务器列表

          #以下是一些反向代理的配置可删除.

          proxy_redirect off;

          #后端的Web服务器可以通过X-Forwarded-For获取用户真实IP

          proxy_set_header Host $host;

          proxy_set_header X-Real-IP $remote_addr;

          proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

          client_max_body_size 10m;    #允许客户端请求的最大单文件字节数

          client_body_buffer_size 128k;  #缓冲区代理缓冲用户端请求的最大字节数,

          proxy_connect_timeout 90;  #nginx跟后端服务器连接超时时间(代理连接超时)

          proxy_send_timeout 90;        #后端服务器数据回传时间(代理发送超时)

          proxy_read_timeout 90;         #连接成功后,后端服务器响应时间(代理接收超时)

          proxy_buffer_size 4k;             #设置代理服务器(nginx)保存用户头信息的缓冲区大小

          proxy_buffers 4 32k;               #proxy_buffers缓冲区,网页平均在32k以下的话,这样设置

          proxy_busy_buffers_size 64k;    #高负荷下缓冲大小(proxy_buffers*2)

          proxy_temp_file_write_size 64k;  #设定缓存文件夹大小,大于这个值,将从upstream服务器传

       }

三、反向代理配置:

编译时需要加入ngx_cache_purge-2.1,安装参考:http://www.cnblogs.com/littlehb/archive/2013/04/02/2994686.html

proxy.conf配置如下:

proxy_temp_path   /home/proxy_temp; 

proxy_cache_path  /home/proxy_cache levels=1:2 keys_zone=cache_one:500m inactive=1d max_size=2g; 

client_body_buffer_size  512k; 

proxy_connect_timeout    50;    

proxy_read_timeout       600;  

proxy_send_timeout       600;  

proxy_buffer_size        128k;   

proxy_buffers           16 256k;

proxy_busy_buffers_size 512k; 

proxy_temp_file_write_size 1024m;   

#proxy_ignore_client_abort  on;     

proxy_next_upstream error timeout invalid_header http_500 http_503 http_404 http_502 http_504;

upstream.conf配置如下:

upstream weixin {

  ip_hash;

  server 121.11.70.224:80  max_fails=1 fail_timeout=60s;  

}

weixin.com.conf配置如下:

log_format  weixin.com.log  '$remote_addr - $remote_user [$time_local] "$request" '

             '$status $body_bytes_sent "$http_referer" '

             '"$http_user_agent" $http_x_forwarded_for';

server{

                listen       80;

                server_name  www.weixin.com m.weixin.com weixin.com;

                index index.html index.htm index.php;

                root  /home/wwwroot/weixin.com;

 

location / {

        proxy_next_upstream http_502 http_504 error timeout invalid_header;

        proxy_cache cache_one;

        proxy_cache_valid  200 304 12h;

        proxy_cache_key $host$uri$is_args$args;

        proxy_set_header Host $host;

        proxy_set_header X-Real-IP $remote_addr;

        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_fo
f644
r;

        proxy_pass http://weixin;
        proxy_pass_header Set-Cookie; 

        expires 1m;

}

location ~ .*\.(php|jsp|cgi)?$ 

        {

        proxy_next_upstream http_502 http_504 error timeout invalid_header;

        proxy_cache cache_one;

        proxy_cache_valid  200 304 12h;

        proxy_cache_key $host$uri$is_args$args;

        proxy_set_header Host $host;

        proxy_set_header X-Real-IP $remote_addr;

        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

        proxy_pass http://weixin;
        proxy_pass_header Set-Cookie; 

        expires -1;

        if ($request_uri ~ (.*)select(.*)from(.*))

        {

                return 408;

        }

        }

location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$

        {

        proxy_next_upstream http_502 http_504 error timeout invalid_header;

        proxy_cache cache_one;

        proxy_cache_valid  200 304 12h;

        proxy_cache_key $host$uri$is_args$args;

        proxy_set_header Host $host;

        proxy_set_header X-Real-IP $remote_addr;

        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

        proxy_pass http://weixin;
        proxy_pass_header Set-Cookie; 

        expires      7d;

        chunked_transfer_encoding       off;

        }

location ~ .*\.(js|css|html)?$

        {

        proxy_next_upstream http_502 http_504 error timeout invalid_header;

        proxy_cache cache_one;

        proxy_cache_valid  200 304 12h;

        proxy_cache_key $host$uri$is_args$args;

        proxy_set_header Host $host;

        proxy_set_header X-Real-IP $remote_addr;

        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

        proxy_pass http://weixin;
        proxy_pass_header Set-Cookie; 

        expires      10m;

        chunked_transfer_encoding       off;

        }

location ~ /purge(/.*)

        {

        allow            127.0.0.1;

        allow            10.1.0.0/16;

        deny             all;

        proxy_cache_purge    cache_one   $host$1$is_args$args;

        }

                access_log  /home/wwwlogs/weixin.access.log  weixin.com.log;

}

四、Nginx Location配置及正则匹配

语法规则: location [=|~|~*|^~] /uri/ { … }

= 开头表示精确匹配

^~ 开头表示uri以某个常规字符串开头,理解为匹配url路径即可。nginx不对url做编码,因此请求为/static/20%/aa,可以被规则^~ /static//aa匹配到(注意是空格)。

~ 开头表示区分大小写的正则匹配 

~*  开头表示不区分大小写的正则匹配

!~和!~*分别为区分大小写不匹配及不区分大小写不匹配 的正则

/ 通用匹配,任何请求都会匹配到。 

多个location配置的情况下匹配顺序为(参考资料而来,还未实际验证,试试就知道了,不必拘泥,仅供参考):

首先匹配 =,其次匹配^~, 其次是按文件中顺序的正则匹配,最后是交给 /通用匹配。当有匹配成功时候,停止匹配,按当前匹配规则处理请求。

例子,有如下匹配规则:

location = / {

   #规则A

}

location = /login {

   #规则B

}

location ^~ /static/ {

   #规则C

}

location ~ \.(gif|jpg|png|js|css)$ {

   #规则D

}

location ~* \.png$ {

   #规则E

}

location !~ \.xhtml$ {

   #规则F

}

location !~* \.xhtml$ {

   #规则G

}

location / {

   #规则H

}

那么产生的效果如下:

访问根目录/, 比如http://localhost/ 将匹配规则A

访问 http://localhost/login 将匹配规则B,http://localhost/register 则匹配规则H

访问 http://localhost/static/a.html 将匹配规则C

访问 http://localhost/a.gif, http://localhost/b.jpg 将匹配规则D和规则E,但是规则D顺序优先,规则E不起作用,而 http://localhost/static/c.png 则优先匹配到规则C

访问 http://localhost/a.PNG 则匹配规则E,而不会匹配规则D,因为规则E不区分大小写。

访问 http://localhost/a.xhtml 不会匹配规则F和规则G,http://localhost/a.XHTML不会匹配规则G,因为不区分大小写。规则F,规则G属于排除法,符合匹配规则但是不会匹配到,所以想想看实际应用中哪里会用到。

访问 http://localhost/category/id/1111 则最终匹配到规则H,因为以上规则都不匹配,这个时候应该是nginx转发请求给后端应用服务器,比如FastCGI(php),tomcat(jsp),nginx作为方向代理服务器存在。

所以实际使用中,个人觉得至少有三个匹配规则定义,如下:

#直接匹配网站根,通过域名访问网站首页比较频繁,使用这个会加速处理,官网如是说。

#这里是直接转发给后端应用服务器了,也可以是一个静态首页

# 第一个必选规则

location = / {

   proxy_pass http://tomcat:8080/index
}

# 第二个必选规则是处理静态文件请求,这是nginx作为http服务器的强项

# 有两种配置模式,目录匹配或后缀匹配,任选其一或搭配使用

location ^~ /static/ {

    root /webroot/static/;

}

location ~* \.(gif|jpg|jpeg|png|css|js|ico)$ {

    root /webroot/res/;

}

#第三个规则就是通用规则,用来转发动态请求到后端应用服务器

#非静态文件请求就默认是动态请求,自己根据实际把握

#毕竟目前的一些框架的流行,带.php,.jsp后缀的情况很少了

location / {

   proxy_pass http://tomcat:8080/


五、nginx ReWrite语法

last – 基本上都用这个Flag。

break – 中止Rewirte,不在继续匹配

redirect – 返回临时重定向的HTTP状态302

permanent – 返回永久重定向的HTTP状态301

1、下面是可以用来判断的表达式:

-f和!-f用来判断是否存在文件

-d和!-d用来判断是否存在目录

-e和!-e用来判断是否存在文件或目录

-x和!-x用来判断文件是否可执行

2、下面是可以用作判断的全局变量

例:http://localhost:88/test1/test2/test.php

$host:localhost

$server_port:88

$request_uri:http://localhost:88/test1/test2/test.php

$document_uri:/test1/test2/test.php

$document_root:D:\nginx/html

$request_filename:D:\nginx/html/test1/test2/test.php

六、Redirect重定向301及302语法

server {

listen 80;

server_name start.igrow.cn;

index index.html index.php;

root html;

if ($http_host !~ “^star\.igrow\.cn$" {

rewrite ^(.*) http://star.igrow.cn$1 redirect;

}

}

七、防盗链location ~* \.(gif|jpg|swf)$ {

valid_referers none blocked start.igrow.cn sta.igrow.cn;

if ($invalid_referer) {

rewrite ^/ http://$host/logo.png;
}

}

八、根据文件类型的缓存设置过期时间

location ~* \.(js|css|jpg|jpeg|gif|png|swf)$ {

if (-f $request_filename) {

expires 1h;

break;

}

}

九、禁止访问某个目录

location ~* \.(txt|doc)${

root /data/www/wwwroot/linuxtone/test;

deny all;

}

十、 一些可用的全局变量

$args

$content_length

$content_type

$document_root

$document_uri

$host

$http_user_agent

$http_cookie

$limit_rate

$request_body_file

$request_method

$remote_addr

$remote_port

$remote_user

$request_filename

$request_uri

$query_string

$scheme

$server_protocol

$server_addr

$server_name

$server_port

$uri

     }

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: