1234567891011121314151617181920212223242526272829303132 |
- server {
- listen 80;
- listen [::]:80;
- server_name localhost;
- client_max_body_size 8192m;
-
-
-
-
- location /admin {
- alias /usr/share/nginx/html;
- index admin.html;
- }
- location /ui {
- alias /usr/share/nginx/html;
- index index.html;
- }
-
- location /user/ {
- proxy_pass http://cr-user:8908/usercenter/;
- }
-
-
- location /cr/ {
- proxy_pass http://cr-svc:6123/crsvc/;
- }
- }
|