Nginx应用场景总结及示例

前言

Nginx (engine x) 是一款轻量级的 Web 服务器 、反向代理服务器及电子邮件( IMAP/POP3 )代理服务器。反向代理(Reverse Proxy)方式是指以代理服务器来接受 internet 上的连接请求,然后将请求转发给内部网络上的服务器,并将从服务器上得到的结果返回给 internet 上请求连接的客户端,此时代理服务器对外就表现为一个反向代理服务器。

常用命令

1
2
3
4
5
6
7
8
nginx -s stop       快速关闭Nginx,可能不保存相关信息,并迅速终止web服务。
nginx -s quit       平稳关闭Nginx,保存相关信息,有安排的结束web服务。
nginx -s reload     因改变了Nginx相关配置,需要重新加载配置而重载。
nginx -s reopen     重新打开日志文件。
nginx -c filename   为 Nginx 指定一个配置文件,来代替缺省的。
nginx -t            不运行,而仅仅测试配置文件。nginx 将检查配置文件的语法的正确性,并尝试打开配置文件中所引用到的文件。
nginx -v            显示 nginx 的版本。
nginx -V            显示 nginx 的版本,编译器版本和配置参数。

实例目录结构

假如我现在拥有域名: www.ifantasy.net ,并且将其指向我的公网服务器A:210.42.42.42, nginx 目录结构如下:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
nginx/
├── conf.d
│   ├── fantasy_http.conf
│   ├── ......
│   └── fantasy_static.conf
├── default.d
├── fastcgi.conf
├── fastcgi.conf.default
├── fastcgi_params
├── fastcgi_params.default
├── koi-utf
├── koi-win
├── mime.types
├── mime.types.default
├── nginx.conf
├── nginx.conf.default
├── nginx.conf.https
├── scgi_params
├── scgi_params.default
├── uwsgi_params
├── uwsgi_params.default
└── win-utf

实例

http反向代理配置

需求: 访问www.ifantasy.net(默认访问A的80端口)时会访问到tomcat服务
配置文件: /etc/nginx/nginx.conf

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
#运行用户
#user somebody;

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

#全局错误日志
error_log  /var/log/nginx/error.log;
error_log  /var/log/nginx/notice.log  notice;
error_log  /var/log/nginx/info.log  info;

#PID文件,记录当前启动的nginx的进程ID
pid        /etc/nginx/nginx.pid;

#工作模式及连接数上限
events {
    worker_connections 1024;    #单个后台worker process进程的最大并发链接数
}

#设定http服务器,利用它的反向代理功能提供负载均衡支持
http {
    #设定mime类型(邮件支持类型),类型由mime.types文件定义
    include        /etc/nginx/mime.types;
    default_type  application/octet-stream;

    #设定日志
	log_format  main  '[$remote_addr] - [$remote_user] [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log    /var/log/nginx/access.log main;
    rewrite_log     on;

    #sendfile 指令指定 nginx 是否调用 sendfile 函数(zero copy 方式)来输出文件,对于普通应用,
    #必须设为 on,如果用来进行下载等应用磁盘IO重负载应用,可设置为 off,以平衡磁盘与网络I/O处理速度,降低系统的uptime.
    sendfile        on;
    #tcp_nopush     on;

    #连接超时时间
    keepalive_timeout  120;
    tcp_nodelay        on;

	#gzip压缩开关
	#gzip  on;

    #设定实际的服务器列表
    upstream fantasy_tomcat{
        server 127.0.0.1:8080;
    }

    #HTTP服务器
    server {
        #监听80端口,80端口是知名端口号,用于HTTP协议
        listen       80;

        #定义使用www.xx.com访问
        server_name  www.ifantasy.net;

		#首页
		#index index.html

		#指向webapp的目录
		#root /home/fantasy/webapp;

		#编码格式
		charset utf-8;

		#代理配置参数
        proxy_connect_timeout 180;
        proxy_send_timeout 180;
        proxy_read_timeout 180;
        proxy_set_header Host $host;
        proxy_set_header X-Forwarder-For $remote_addr;

        #反向代理的路径(和upstream绑定),location 后面设置映射的路径
        location / {
            proxy_pass http://fantasy_tomcat;
        }

        #静态文件,nginx自己处理
        location ~ ^/(images|javascript|js|css|flash|media|static)/ {
            root /home/fantasy/webapp/views;
            #过期30天,静态文件不怎么更新,过期可以设大一点,如果频繁更新,则可以设置得小一点。
            expires 30d;
        }

        #设定查看Nginx状态的地址
        location /NginxStatus {
            stub_status           on;
            access_log            on;
            auth_basic            "NginxStatus";
            auth_basic_user_file  conf/htpasswd;
        }

        #禁止访问 .htxxx 文件
        location ~ /\.ht {
            deny all;
        }

		#错误处理页面(可选择性配置)
		#error_page   404              /404.html;
		#error_page   500 502 503 504  /50x.html;
        #location = /50x.html {
        #    root   html;
        #}
    }
}

优化配置文件

需求: 如果所有配置都写在 nginx.conf 内会很臃肿,现在在 nginx 目录下创建 conf.d 目录,用来存放额外配置,该目录下所有 conf 后缀都会直接生效,实现上述需求
配置文件: /etc/nginx/conf.d/fantasy_tomcat.conf

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
## Basic reverse proxy server ##
upstream fantasy_tomcat{
    server 127.0.0.1:8080;
}
server {
    #监听80端口,80端口是知名端口号,用于HTTP协议
    listen       80;

    #定义使用www.xx.com访问
    server_name  www.ifantasy.net;

    #首页
    #index index.html

    #指向webapp的目录
    #root /home/fantasy/webapp;

    #编码格式
    charset utf-8;

    #代理配置参数
    proxy_connect_timeout 180;
    proxy_send_timeout 180;
    proxy_read_timeout 180;
    proxy_set_header Host $host;
    proxy_set_header X-Forwarder-For $remote_addr;

    #反向代理的路径(和upstream绑定),location 后面设置映射的路径
    location / {
        proxy_pass http://fantasy_tomcat;
    }

    #静态文件,nginx自己处理
    location ~ ^/(images|javascript|js|css|flash|media|static)/ {
        root /home/fantasy/webapp/views;
        #过期30天,静态文件不怎么更新,过期可以设大一点,如果频繁更新,则可以设置得小一点。
        expires 30d;
    }

    #设定查看Nginx状态的地址
    location /NginxStatus {
        stub_status           on;
        access_log            on;
        auth_basic            "NginxStatus";
        auth_basic_user_file  conf/htpasswd;
    }

    #禁止访问 .htxxx 文件
    location ~ /\.ht {
        deny all;
    }

    #错误处理页面(可选择性配置)
    #error_page   404              /404.html;
    #error_page   500 502 503 504  /50x.html;
    #location = /50x.html {
    #    root   html;
    #}
}

修改 nginx.conf :

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#运行用户
#user somebody;

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

#全局错误日志
error_log  /var/log/nginx/error.log;
error_log  /var/log/nginx/notice.log  notice;
error_log  /var/log/nginx/info.log  info;

#PID文件,记录当前启动的nginx的进程ID
pid        /etc/nginx/nginx.pid;

#工作模式及连接数上限
events {
    worker_connections 1024;    #单个后台worker process进程的最大并发链接数
}

#设定http服务器,利用它的反向代理功能提供负载均衡支持
http {
    #设定mime类型(邮件支持类型),类型由mime.types文件定义
    include        /etc/nginx//mime.types;
    default_type  application/octet-stream;

    #设定日志
	log_format  main  '[$remote_addr] - [$remote_user] [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log    /var/log/nginx/access.log main;
    rewrite_log     on;

    #sendfile 指令指定 nginx 是否调用 sendfile 函数(zero copy 方式)来输出文件,对于普通应用,
    #必须设为 on,如果用来进行下载等应用磁盘IO重负载应用,可设置为 off,以平衡磁盘与网络I/O处理速度,降低系统的uptime.
    sendfile        on;
    #tcp_nopush     on;

    #连接超时时间
    keepalive_timeout  120;
    tcp_nodelay        on;

	include /etc/nginx/conf.d/*.conf;	#在这里引入conf.d文件夹下所有conf后缀的配置文件

	#gzip压缩开关
	#gzip  on;
}

https 反向代理配置

需求: 使网站可以通过 https(443端口) 协议访问,需要你有安全证书,在 nginx.conf 中你需要指定证书和它对应的 key
配置文件: conf.d/fantasy_https.conf

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#HTTP服务器
server {
    #监听443端口。443为知名端口号,主要用于HTTPS协议
    listen       443 ssl;

    #定义使用www.xx.com访问
    server_name  www.ifantasy.net;

    #ssl证书文件位置(常见证书文件格式为:crt/pem)
    ssl_certificate      cert.pem;
    #ssl证书key位置
    ssl_certificate_key  cert.key;

    #ssl配置参数(选择性配置)
    ssl_session_cache    shared:SSL:1m;
    ssl_session_timeout  5m;
    #数字签名,此处使用MD5
    ssl_ciphers  HIGH:!aNULL:!MD5;
    ssl_prefer_server_ciphers  on;

    location / {
        root   /root;
        index  index.html index.htm;
    }
}

负载均衡配置

需求:210.42.42.42同局域网下有三台应用服务器服务器192.168.1.1192.168.1.2192.168.1.3,三台服务器的80端口均运行一个商城应用.为了缓解服务器压力,当用户访问 buy.ifantasy.net 时,需要将用户请求分发到内网的三个服务器上,服务器A只做请求分发.
配置文件: conf.d/fantasy_balance_buy.conf

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
http {
     #设定mime类型,类型由mime.type文件定义
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;
    #设定日志格式
    access_log    /var/log/nginx/access.log;

    #设定负载均衡的服务器列表
    upstream fantasy_balance_buy {
        #weigth参数表示权值,权值越高被分配到的几率越大
        server 192.168.1.1:80   weight=1;
        server 192.168.1.2:80   weight=2;
        server 192.168.1.3:80   weight=3;
    }

   #HTTP服务器
   server {
        #侦听80端口
        listen       80;

        #定义使用buy.ifantasy.net访问
        server_name  buy.ifantasy.net;

        #对所有请求进行负载均衡请求
        location / {
            #root        /root;                 #定义服务器的默认网站根目录位置
            #index       index.html index.htm;  #定义首页索引文件的名称
            proxy_pass  http://fantasy_balance_buy  ;#请求转向load_balance_server 定义的服务器列表

            #以下是一些反向代理的配置(可选择性配置)
            #proxy_redirect off;
            proxy_set_header Host $host;
            proxy_set_header X-Real-IP $remote_addr;
            #后端的Web服务器可以通过X-Forwarded-For获取用户真实IP
            proxy_set_header X-Forwarded-For $remote_addr;
            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服务器传

            client_max_body_size 10m;          #允许客户端请求的最大单文件字节数
            client_body_buffer_size 128k;      #缓冲区代理缓冲用户端请求的最大字节数
        }
    }
}

根据请求路径映射对应服务

需求: 服务器A上分别运行三个服务:10001端口的服务service1、10002端口的服务service2、10003端口的服务service3,具体需求如下:

请求 结果
ifantasy.net/service1 10001端口的服务service1
ifantasy.net/service2 10002端口的服务service2
ifantasy.net/service3 10003端口的服务service3

配置文件: conf.d/fantasy_service.conf

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
http {
	#此处省略一些基本配置

	upstream fantasy_service1{
		server ifantasy.net:10001;
	}
	
	upstream fantasy_service2{
		server ifantasy.net:10002;
	}

	upstream fantasy_service2{
		server ifantasy.net:10002;
	}

	server {
		#此处省略一些基本配置
		#默认指向product的server
		location / {
			proxy_pass http://fantasy_service1;
		}

		location /service1/{
			proxy_pass http://fantasy_service1;
		}

		location /service2/ {
			proxy_pass http://fantasy_service2;
		}

		location /service3/ {
			proxy_pass http://fantasy_service3;
		}
	}
}

静态站点配置

需求: 服务器A上/data/webapp文件夹下有静态网页html/css/js/img,需要通过 static.ifantasy.net 的方式访问到这些资源
效果: /data/img文件下有图片 fantasy.png ,可通过img.ifantasy.net/fantasy.png访问
配置文件: conf.d/fantasy_static.conf

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
worker_processes  1;

events {
	worker_connections  1024;
}

http {
    include       mime.types;
    default_type  application/octet-stream;
    sendfile        on;
    keepalive_timeout  65;

    gzip on;
    gzip_types text/plain application/x-javascript text/css application/xml text/javascript application/javascript image/jpeg image/gif image/png;
    gzip_vary on;

    server {
		listen       80;
		server_name  static.ifantasy.net;

		location / {
			root /data/img;
			index index.html;
			#转发任何请求到 index.html
		}
	}
}

域名重定向

需求: 实现 ftp 功能
效果: 访问域名 www.ifantasy.net 时将被重定向至域名 ifantasy.net
配置文件: conf.d/fantasy_ftp.conf

1
2
3
4
5
server {
    listen 80;
    server_name  www.ifantasy.net;
    rewrite ^/(.*)$ https://ifantasy.net/$1 permanent;
}

搭建文件服务器

需求: 实现 ftp 功能
配置文件: conf.d/fantasy_ftp.conf

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
autoindex on;# 显示目录
autoindex_exact_size on;# 显示文件大小
autoindex_localtime on;# 显示文件时间

server {
    charset      utf-8,gbk; # windows 服务器下设置后,依然乱码,暂时无解
    listen       9050 default_server;
    listen       [::]:9050 default_server;
    server_name  _;
    root         /share/fs;
}

说明:

  • autoindex 开启可以显示目录,默认不开启
  • autoindex_exact_size 开启可以显示文件的大小
  • autoindex_localtime 开启可以显示文件的修改时间
  • root 用来设置开放为文件服务的根路径
  • charset 设置为 charset utf-8,gbk;,可以避免中文乱码问题(windows 服务器下设置后,依然乱码?)

跨域解决方案

解决跨域问题一般有两种思路:

  1. CORS:在后端服务器设置 HTTP 响应头,把你需要运行访问的域名加入加入 Access-Control-Allow-Origin 中。
  2. jsonp:把后端根据请求,构造 json 数据,并返回,前端用 jsonp 跨域。

需求: www.ifantasy.net 网站是由一个前端 app ,一个后端 app 组成的。前端端口号为 10000, 后端端口号为 10001
配置文件: conf.d/enable-cors.conf

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# allow origin list
set $ACAO '*';

# set single origin
if ($http_origin ~* (www.ifantasy.net)$) {
  set $ACAO $http_origin;
}

if ($cors = "trueget") {
	add_header 'Access-Control-Allow-Origin' "$http_origin";
	add_header 'Access-Control-Allow-Credentials' 'true';
	add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
	add_header 'Access-Control-Allow-Headers' 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
}

if ($request_method = 'OPTIONS') {
  set $cors "${cors}options";
}

if ($request_method = 'GET') {
  set $cors "${cors}get";
}

if ($request_method = 'POST') {
  set $cors "${cors}post";
}