Nginx配置

来源:互联网 发布:宁弈和知微的结局 编辑:程序博客网 时间:2024/06/07 02:39
HTTP代理
#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;    server {        listen       8080;#监听8080端口        server_name  localhost;#相当于IIS中的主机头        error_log   logs/bookms.error.log;        charset utf-8;        location / {          #默认跳转到http://127.0.0.1:9000          proxy_pass http://127.0.0.1:9000;        }    }}



WebSocket下TCP负载均衡配置

#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;}stream {    upstream bind {        server 192.168.3.10:5121 weight=5;        server 192.168.3.11:5121 max_fails=3 fail_timeout=30s;        server 192.168.3.12:5121;    }    server {        listen 5121;        proxy_connect_timeout 1s;        proxy_timeout 3s;        proxy_pass bind;    }}


0 0
原创粉丝点击