default.conf 264 B

1234567891011121314
  1. server {
  2. listen 39206;
  3. listen [::]:39206;
  4. server_name localhost;
  5. access_log access.log;
  6. error_log error.log;
  7. location / {
  8. root /dist;
  9. index index.html index.htm;
  10. try_files $uri $uri/ /index.html;
  11. }
  12. }