|
@ -26,15 +26,15 @@ http { |
|
|
gzip_types text/plain application/javascript text/css application/xml text/javascript image/jpeg image/gif image/png; |
|
|
gzip_types text/plain application/javascript text/css application/xml text/javascript image/jpeg image/gif image/png; |
|
|
gzip_vary on; |
|
|
gzip_vary on; |
|
|
gzip_disable "MSIE [1-6]\."; |
|
|
gzip_disable "MSIE [1-6]\."; |
|
|
upstream eam { |
|
|
upstream tianhe { |
|
|
server localhost:25210 weight=10 max_fails=3 fail_timeout=10s; |
|
|
server localhost:28029 weight=10 max_fails=3 fail_timeout=10s; |
|
|
} |
|
|
} |
|
|
server { |
|
|
server { |
|
|
listen 25200; |
|
|
listen 28020; |
|
|
server_name_in_redirect off; |
|
|
server_name_in_redirect off; |
|
|
server_name dev.ccwin-in.com; |
|
|
server_name dev.ccwin-in.com; |
|
|
location /api/ { |
|
|
location /api/ { |
|
|
proxy_pass http://eam/; |
|
|
proxy_pass http://tianhe/; |
|
|
proxy_next_upstream http_500 http_502 http_503 http_504 error timeout invalid_header; |
|
|
proxy_next_upstream http_500 http_502 http_503 http_504 error timeout invalid_header; |
|
|
proxy_set_header X-Forwared-For $proxy_add_x_forwarded_for; |
|
|
proxy_set_header X-Forwared-For $proxy_add_x_forwarded_for; |
|
|
proxy_set_header Host $http_host; |
|
|
proxy_set_header Host $http_host; |
|
@ -53,7 +53,7 @@ http { |
|
|
proxy_cache_valid 200 304 12h; |
|
|
proxy_cache_valid 200 304 12h; |
|
|
proxy_cache_key $host$uri$is_args$args; |
|
|
proxy_cache_key $host$uri$is_args$args; |
|
|
try_files $uri $uri/ /index.html; |
|
|
try_files $uri $uri/ /index.html; |
|
|
root /opt/eam; |
|
|
root /opt/tianhe; |
|
|
index index.html index.htm; |
|
|
index index.html index.htm; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|