1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- server {
- listen 80;
- listen [::]:80;
- server_name localhost;
-
- client_max_body_size 200M;
- client_body_buffer_size 30M;
- location / {
- root /usr/share/nginx/html;
- index index.html index.htm;
- }
-
-
-
- error_page 500 502 503 504 /50x.html;
- location = /50x.html {
- root /usr/share/nginx/html;
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- location /mall/ {
- proxy_pass http://sku3d-mall:7904/mall/;
- }
-
- location /website/ {
- proxy_pass http://sku3d-website:7902/sku3dsite/;
- }
-
- location /usercenter/ {
- proxy_set_header Host $host;
- proxy_set_header X-Forwarded-For $remote_addr;
- proxy_set_header X-Forwarded-Host $server_name;
- proxy_set_header X-Real-IP $remote_addr;
- proxy_pass http://sku3d-usercenter:8908/usercenter/;
- }
-
- location /malluser/ {
- proxy_pass http://sku3d-malluser:8908/usercenter/;
- }
- location /eps2svg/ {
- proxy_pass http://eps2svg-srv:8000/;
- }
-
-
-
-
- }
|