Browse Source

Serve fullchain

python3
Andrea Cimbalo 7 years ago
parent
commit
dcf8116f60
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      roles/nginx/templates/base.j2

+ 1
- 1
roles/nginx/templates/base.j2 View File

@ -3,7 +3,7 @@ server {
listen [::]:443 ssl http2;
# certs sent to the client in SERVER HELLO are concatenated in ssl_certificate
ssl_certificate /etc/letsencrypt/live/{{ server_fqdn }}/cert.pem;
ssl_certificate /etc/letsencrypt/live/{{ server_fqdn }}/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/{{ server_fqdn }}/privkey.pem;
ssl_session_timeout 1d;
ssl_session_cache shared:SSL:50m;


Loading…
Cancel
Save