server { listen 80; listen 443 ssl; server_name __domain__ __aliases__; root __path__/__web_directory__; ssl on; ssl_certificate __certificate__; ssl_certificate_key __private_key__; add_header X-Frame-Options "SAMEORIGIN"; add_header X-Content-Type-Options "nosniff"; index index.html; charset utf-8; location / { try_files $uri $uri/ /index.html; } location = /favicon.ico { access_log off; log_not_found off; } location = /robots.txt { access_log off; log_not_found off; } error_page 404 /index.html; location ~ /\.(?!well-known).* { deny all; } include conf.d/__domain___redirects; }