default.conf 382 B

123456789101112131415161718192021
  1. server {
  2. listen 80;
  3. listen [::]:80;
  4. server_name localhost;
  5. # error_page 500 502 503 504 /50x.html;
  6. # location = /50x.html {
  7. # root /usr/share/nginx/html;
  8. # }
  9. # 用户
  10. location /user/ {
  11. proxy_pass http://cr-user:8908/usercenter/;
  12. }
  13. # crsvc
  14. location /cr/ {
  15. proxy_pass http://cr-svc:6123/crsvc/;
  16. }
  17. }