nginx.conf 188 B

1234567891011
  1. server {
  2. listen 80;
  3. location / {
  4. root /usr/share/nginx/html;
  5. index index.html index.htm;
  6. try_files $uri /index.html =404;
  7. }
  8. include /etc/nginx/extra-conf.d/*.conf;
  9. }