mirror of
https://github.com/dokku/dokku.git
synced 2026-05-18 05:05:46 +02:00
12 lines
511 B
Plaintext
12 lines
511 B
Plaintext
include {{ $.DOKKU_ROOT }}/*/nginx.conf;
|
|
|
|
server_tokens off;
|
|
|
|
# Settings from https://mozilla.github.io/server-side-tls/ssl-config-generator/
|
|
ssl_session_cache shared:SSL:20m;
|
|
ssl_session_timeout 1d;
|
|
ssl_session_tickets off;
|
|
|
|
ssl_dhparam {{ $.NGINX_ROOT }}/dhparam.pem;
|
|
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;
|