码迷,mamicode.com
首页 > 其他好文 > 详细

sss

时间:2019-02-22 12:38:32      阅读:294      评论:0      收藏:0      [点我收藏+]

标签:nts   user   cte   listen   pst   http   set   header   ack   

user  nobody;
worker_processes  8;

events {
    use epoll;
    worker_connections  2048;
}
http {
    include       mime.types;
    default_type  application/octet-stream;
    sendfile        on;
    keepalive_timeout  65;
	upstream backend {
            # ip_hash;
	   			 sticky;
           server 10.217.0.141:8182;
           server 10.217.0.151:8181;

         }
    server {
        listen       8181;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

			 location /huss/ {
					proxy_set_header Host $host:8181;
       		proxy_set_header X-Real-IP $remote_addr;
   	    	proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
             #反向代理的地址
          proxy_pass http://backend;
        }

        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
}

  

sss

标签:nts   user   cte   listen   pst   http   set   header   ack   

原文地址:https://www.cnblogs.com/lichoo/p/10417277.html

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