default.conf 327 B

12345678910111213
  1. location / {
  2. root /usr/share/nginx/html;
  3. index index.html index.htm;
  4. }
  5. location ^~/api/ {
  6. proxy_pass http://dc3-gateway:8000/api/;
  7. }
  8. error_page 500 502 503 504 /50x.html;
  9. location = /50x.html {
  10. root /usr/share/nginx/html;
  11. }