码迷,mamicode.com
首页 > Web开发 > 详细

Nginx 配置 HTTP 代理

时间:2019-09-16 23:25:02      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:str   keep   nec   ges   request   timeout   process   nbsp   redirect   

配置如下

 

#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 tomcats{ 
       server 172.17.127.160:8081;
       server 172.17.127.160:8082;
       server 172.17.127.160:8083;
   }


    server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            #root   html;
            proxy_pass http://tomcats; 
            index  index.html index.htm;
        }

        #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 配置 HTTP 代理

标签:str   keep   nec   ges   request   timeout   process   nbsp   redirect   

原文地址:https://www.cnblogs.com/vipsoft/p/11530872.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!