1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- 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 /website/ {
- proxy_pass http://sku3d-website:7902/longyuan/;
- }
-
- 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/;
- }
- }
|