default.conf 485 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. alias /usr/share/nginx/html;
  12. index admin.html;
  13. }
  14. location /ui {
  15. alias /usr/share/nginx/html;
  16. index index.html;
  17. }
  18. location /nrhe/ {
  19. proxy_pass http://nrhe-svc:6124/nrhe/;
  20. }
  21. }