nginx 配置实战

来源:互联网 发布:mac截图存在哪 编辑:程序博客网 时间:2024/06/18 11:07

http反向代理配置

我们先实现一个小目标:不考虑复杂的配置,仅仅是完成一个 http 反向代理。

nginx.conf 配置文件如下:
注:conf / nginx.conf 是 nginx 的默认配置文件。你也可以使用 nginx -c 指定你的配置文件

#user  nobody;worker_processes  1;error_log  logs/error.log;error_log  logs/error.log  notice;error_log  logs/error.log  info;pid        logs/nginx.pid;events {    worker_connections  1024;}http {    include       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  logs/access.log  main;    sendfile        on;    #tcp_nopush     on;    #keepalive_timeout  0;    keepalive_timeout  65;    #gzip  on;    upstream local_tomcat {           server 127.0.0.1:8095;       }       server {        listen       80;#定义使用www.xx.com访问        server_name  www.wangruli.com;        access_log  logs/host.access.log  main; #首页        index index.html index.jsp;                #指向webapp的目录        root D:\ClassBrand\szhxy\src\main\webapp;        #编码格式        charset utf-8;                #反向代理的路径(和upstream绑定),location 后面设置映射的路径        location / {            proxy_pass http://local_tomcat;     #以下是一些反向代理的配置(可选择性配置)            #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;      #缓冲区代理缓冲用户端请求的最大字节数        }         #error_page  404              /404.html;        # redirect server error pages to the static page /50x.html        #        error_page   500 502 503 504  /50x.html;        location = /50x.html {            root   html;        }        #静态文件,nginx自己处理        location ~ ^/(images|javascript|js|css|flash|media|static)/ {    root D:\ClassBrand\szhxy\src\main\webapp;            #过期30天,静态文件不怎么更新,过期可以设大一点,如果频繁更新,则可以设置得小一点。            expires 1h;        }            #设定查看Nginx状态的地址        location /NginxStatus {            stub_status           on;            access_log            on;            auth_basic            "NginxStatus";            auth_basic_user_file  conf/htpasswd;        }            #禁止访问 .htxxx 文件        location ~ /\.ht {            deny all;        }    }    # another virtual host using mix of IP-, name-, and port-based configuration    #    #server {    #    listen       8000;    #    listen       somename:8080;    #    server_name  somename  alias  another.alias;    #    location / {    #        root   html;    #        index  index.html index.htm;    #    }    #}    # HTTPS server    #    #server {    #    listen       443 ssl;    #    server_name  localhost;    #    ssl_certificate      cert.pem;    #    ssl_certificate_key  cert.key;    #    ssl_session_cache    shared:SSL:1m;    #    ssl_session_timeout  5m;    #    ssl_ciphers  HIGH:!aNULL:!MD5;    #    ssl_prefer_server_ciphers  on;    #    location / {    #        root   html;    #        index  index.html index.htm;    #    }    #}}

好了,让我们来试试吧:

  1. 启动 webapp,注意启动绑定的端口要和nginx中的 upstream 设置的端口保持一致。
  2. 更改 host:在 C:\Windows\System32\drivers\etc 目录下的host文件中添加一条 DNS 记录

    127.0.0.1 www.helloworld.com
  3. 启动前文中 startup.bat 的命令
  4. 在浏览器中访问 www.helloworld.com,不出意外,已经可以访问了。

负载均衡配置

上一个例子中,代理仅仅指向一个服务器。

但是,网站在实际运营过程中,多半都是有多台服务器运行着同样的app,这时需要使用负载均衡来分流。

nginx也可以实现简单的负载均衡功能。

假设这样一个应用场景:将应用部署在 192.168.1.11:80、192.168.1.12:80、192.168.1.13:80 三台linux环境的服务器上。网站域名叫 www.helloworld.com,公网IP为 192.168.1.11。在公网IP所在的服务器上部署 nginx,对所有请求做负载均衡处理。

nginx.conf 配置如下:

http {     #设定mime类型,类型由mime.type文件定义    include       /etc/nginx/mime.types;    default_type  application/octet-stream;    #设定日志格式    access_log    /var/log/nginx/access.log;    #设定负载均衡的服务器列表    upstream load_balance_server {        #weigth参数表示权值,权值越高被分配到的几率越大        server 192.168.1.11:80   weight=5;        server 192.168.1.12:80   weight=1;        server 192.168.1.13:80   weight=6;    }   #HTTP服务器   server {        #侦听80端口        listen       80;                #定义使用www.xx.com访问        server_name  www.helloworld.com;        #对所有请求进行负载均衡请求        location / {            root        /root;                 #定义服务器的默认网站根目录位置            index       index.html index.htm;  #定义首页索引文件的名称            proxy_pass  http://load_balance_server ;#请求转向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;      #缓冲区代理缓冲用户端请求的最大字节数        }    }}

网站有多个webapp的配置

当一个网站功能越来越丰富时,往往需要将一些功能相对独立的模块剥离出来,独立维护。这样的话,通常,会有多个 webapp。

举个例子:假如 www.helloworld.com 站点有好几个webapp,finance(金融)、product(产品)、admin(用户中心)。访问这些应用的方式通过上下文(context)来进行区分:

www.helloworld.com/finance/

www.helloworld.com/product/

www.helloworld.com/admin/

我们知道,http的默认端口号是80,如果在一台服务器上同时启动这3个 webapp 应用,都用80端口,肯定是不成的。所以,这三个应用需要分别绑定不同的端口号。

那么,问题来了,用户在实际访问 www.helloworld.com 站点时,访问不同 webapp,总不会还带着对应的端口号去访问吧。所以,你再次需要用到反向代理来做处理。

配置也不难,来看看怎么做吧:

http {    #此处省略一些基本配置        upstream product_server{        server www.helloworld.com:8081;    }        upstream admin_server{        server www.helloworld.com:8082;    }        upstream finance_server{        server www.helloworld.com:8083;    }    server {        #此处省略一些基本配置        #默认指向product的server        location / {            proxy_pass http://product_server;        }        location /product/{            proxy_pass http://product_server;        }        location /admin/ {            proxy_pass http://admin_server;        }                location /finance/ {            proxy_pass http://finance_server;        }    }}

https反向代理配置

一些对安全性要求比较高的站点,可能会使用 HTTPS(一种使用ssl通信标准的安全HTTP协议)。

这里不科普 HTTP 协议和 SSL 标准。但是,使用 nginx 配置 https 需要知道几点:

  • HTTPS 的固定端口号是 443,不同于 HTTP 的 80 端口
  • SSL 标准需要引入安全证书,所以在 nginx.conf 中你需要指定证书和它对应的 key

其他和 http 反向代理基本一样,只是在 Server 部分配置有些不同。

  #HTTP服务器  server {      #监听443端口。443为知名端口号,主要用于HTTPS协议      listen       443 ssl;      #定义使用www.xx.com访问      server_name  www.helloworld.com;      #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;      }  }

静态站点配置

有时候,我们需要配置静态站点(即 html 文件和一堆静态资源)。

举例来说:如果所有的静态资源都放在了 /app/dist 目录下,我们只需要在 nginx.conf 中指定首页以及这个站点的 host 即可。

配置如下:

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.zp.cn;        location / {            root /app/dist;            index index.html;            #转发任何请求到 index.html        }    }}

然后,添加 HOST:

127.0.0.1 static.zp.cn

此时,在本地浏览器访问 static.zp.cn ,就可以访问静态站点了。

原创粉丝点击