default.conf 286 B

1234567891011121314151617
  1. server {
  2. listen 8080;
  3. root /app;
  4. include /etc/nginx/mime.types;
  5. location /editor {
  6. try_files $uri /editor.html;
  7. }
  8. location /widget {
  9. try_files $uri /widget.html;
  10. }
  11. location /embed {
  12. try_files $uri /embed.html;
  13. }
  14. }