24 lines
987 B
Plaintext
24 lines
987 B
Plaintext
# set location for challenges
|
|
location ~ ^/.well-known/acme-challenge/ {
|
|
root /opt/bunkerweb/tmp/lets-encrypt;
|
|
}
|
|
|
|
{% if AUTO_LETS_ENCRYPT == "yes" %}
|
|
|
|
# listen on HTTPS PORT
|
|
listen 0.0.0.0:{{ HTTPS_PORT }} ssl {% if HTTP2 == "yes" %}http2{% endif %} {% if USE_PROXY_PROTOCOL == "yes" %}proxy_protocol{% endif %};
|
|
|
|
# TLS config
|
|
ssl_certificate /etc/letsencrypt/live/{{ SERVER_NAME.split(" ")[0] }}/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/{{ SERVER_NAME.split(" ")[0] }}/privkey.pem;
|
|
ssl_protocols {{ HTTPS_PROTOCOLS }};
|
|
ssl_prefer_server_ciphers on;
|
|
ssl_session_tickets off;
|
|
ssl_session_timeout 1d;
|
|
ssl_session_cache shared:MozSSL:10m;
|
|
{% if "TLSv1.2" in HTTPS_PROTOCOLS +%}
|
|
ssl_dhparam /etc/nginx/dhparam;
|
|
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;
|
|
{% endif %}
|
|
|
|
{% endif %} |