Skip to content

分享流行的前端产品

技术|源码|设计|参考

公众号二维码

扫码关注艾小逗公众号

第一时间传递给你

首页/nginx/本文内容

一个nginx配置多个项目,超时时间设置

nginx.conf完整配置,超时时间设置

js

#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  120;
    
	# 超时时间设置
	fastcgi_read_timeout 1200s;
	fastcgi_send_timeout 1200s;
	fastcgi_connect_timeout 1200s;
	

    gzip  on;
    gzip_min_length 1k;
    gzip_comp_level 9;
    gzip_types text/plain application/javascript application/x-javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png;
    gzip_vary on;
    gzip_disable "MSIE [1-6]\.";
    client_max_body_size 200m;
	# 销售中心
    server {
        listen       8084;
        server_name  localhost;

        location / {
            root   html/ds;
            index  index.html index.htm;
           try_files $uri $uri/ /index.html;
		}

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

        location /api/ {
            proxy_pass   http://127.0.0.1:8080/;
	    proxy_connect_timeout 1800;
	    proxy_send_timeout 1800;
	    proxy_read_timeout 1800;
        }
    }
	# 用户中心
	server {
        listen       8081;
        server_name  localhost;

        location / {
            root   html/userCenter;
            index  index.html index.htm;
           try_files $uri $uri/ /index.html;
	}

        location /api/ {
            proxy_pass   http://127.0.0.1:8080/;
        }

    }
	# 物流中心
	server {
        listen       8082;
        server_name  localhost;

        location / {
            root   html/wl;
            index  index.html index.htm;
           try_files $uri $uri/ /index.html;
		}

        location /api/ {
            proxy_pass   http://127.0.0.1:8080/;
        }
    }
	# 仓库中心
	server {
        listen       8083;
        server_name  localhost;

        location / {
            root   html/cc;
            index  index.html index.htm;
           try_files $uri $uri/ /index.html;
		}

        location /api/ {
            proxy_pass   http://127.0.0.1:8080/;
        }
    }
	server {
		listen 8085;
		server_name localhost;
		location / {
			root html/home;
			index index.html;		
		}
		location /api/ {
            proxy_pass   http://127.0.0.1:8080/;
        }
	}



    # 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;
    #    }
    #}

}