12 lines
541 B
Plaintext
12 lines
541 B
Plaintext
# Configure ssl module
|
|
# See: https://nginx.org/en/docs/http/ngx_http_ssl_module.html
|
|
include /etc/letsencrypt/options-ssl-nginx.conf;
|
|
ssl_certificate /etc/letsencrypt/live/netoik.io/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/netoik.io/privkey.pem;
|
|
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
|
|
|
|
# Configure headers
|
|
# See: https://nginx.org/en/docs/http/ngx_http_headers_module.html
|
|
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload;" always;
|
|
|