server { listen 443 ssl http2; listen [::]:443 ssl http2; server_name ta180m.exozy.me; ssl_certificate /etc/letsencrypt/live/exozy.me/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/exozy.me/privkey.pem; include /etc/letsencrypt/options-ssl-nginx.conf; ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; add_header Strict-Transport-Security "max-age=31536000" always; ssl_trusted_certificate /etc/letsencrypt/live/exozy.me/chain.pem; ssl_stapling on; ssl_stapling_verify on; root /srv/http/ta180m/public; index index.html; error_page 404 /404.html; location = /404.html { internal; } location / { try_files $uri $uri/ =404; } }