default.conf 491 B

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