123456789101112131415161718192021222324252627282930 |
- server {
- listen 80;
- listen [::]:80;
- server_name localhost;
-
-
-
-
-
-
-
-
- error_page 500 502 503 504 /50x.html;
- location = /50x.html {
- root /usr/share/nginx/html;
- }
-
-
-
-
- location / {
- proxy_pass http://baishuihu:8101/;
- }
- location /usercenter/ {
- proxy_pass http://baishuihu-usercenter:8908/usercenter/;
- }
- }
|