nginx.conf 211 B

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