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

nginx

时间:2017-07-20 10:08:09      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:log   端口   一个   sse   index   upstream   keep   listen   _for   

nginx作用:1.http服务,2.反向代理,3.负载均衡

nginx配置:用户进程--链接事件--http链接--server服务器--localtion地址过滤

1.用户、进程数,进程id,日志,
2.事件(最大链接数,网络序列化,驱动,一个进程是否多个链接)
3.http:文件类型,日志,文件传输,链接超时,upstream热备,server,错误页
4.server:单链接请求上限,监听端口,监听地址,location
5.location: url过滤,根目录,设置默认页,请求转向,拒绝ip,允许ip。

nginx反向代理和负载均衡:

##反向代理和负载均衡jabin2017/7/18
##================================
worker_processes 1;

events {
    worker_connections 1024;
}

http {
    include mime.types;
    default_type application/octet-stream;

    sendfile on;

    keepalive_timeout 65;

    upstream other {
        server 192.168.30.83:8098 weight=2;
        server 192.168.30.83:8099 weight=3;
    }

    server {
        listen 8001;
        server_name localhost;
        location / {
            #proxy_pass http://192.168.30.83:8099;
            proxy_pass http://other;
            proxy_set_header Host $host;  
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        }
    }
    server {
        listen 8099;
        server_name localhost;
        location / {
            root   E:\JabinDOC\Demo;
            index  index.html index.htm;
        }
    }
    server {
        listen 8098;
        server_name localhost;
        location / {
            root   E:\JabinDOC\End\lottery\assets;
            index  lottery.html index.htm;
        }
    }
}

  

nginx

标签:log   端口   一个   sse   index   upstream   keep   listen   _for   

原文地址:http://www.cnblogs.com/maoriaty/p/7209200.html

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