default.conf 417 B

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