default.conf 200 B

1234567891011
  1. server {
  2. listen 8080;
  3. listen [::]:8080;
  4. server_name _;
  5. location / {
  6. root /app;
  7. index index.html index.htm;
  8. try_files $uri $uri/ /index.html;
  9. }
  10. }