1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- server {
- listen 80;
- listen [::]:80;
- server_name localhost;
-
- 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 /boxcost/ {
- proxy_pass http://box-cost:8888/boxcost/;
- }
-
- location /usercenter/ {
- proxy_pass http://box-usercenter:8908/usercenter/;
- }
-
-
-
-
- }
|