default.conf 407 B

123456789101112131415161718192021
  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. alias /usr/share/nginx/html;
  12. index index.html;
  13. }
  14. location /moutai/ {
  15. proxy_pass http://moutai-svc:3002/moutai/;
  16. }
  17. }