server { listen 80; listen [::]:80; server_name localhost; #access_log /var/log/nginx/host.access.log main; root /usr/share/nginx/public; location / { index index.html; try_files $uri $uri/ $uri.html =404; ssi on; } location /includes/ { try_files $uri $uri/ $uri.html =404; ssi on; add_header X-Robots-Tag "noindex, nofollow"; } error_page 404 /404.html; error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; } }