Browse Source

correctly handle selfsigned certificate

master
parent
commit
a7eca6dd56
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      templates/apache-vhost.conf.j2

+ 3
- 1
templates/apache-vhost.conf.j2 View File

@@ -9,8 +9,10 @@


SSLEngine on SSLEngine on
SSLCertificateFile "/etc/ssl/certs/nextcloud.cert.pem" SSLCertificateFile "/etc/ssl/certs/nextcloud.cert.pem"
SSLCertificateChainFile "/etc/ssl/certs/nextcloud.chain.pem"
SSLCertificateKeyFile "/etc/ssl/private/nextcloud.key.pem" SSLCertificateKeyFile "/etc/ssl/private/nextcloud.key.pem"
{% if not certificate_provider == "selfsigned" %}
SSLCertificateChainFile "/etc/ssl/certs/nextcloud.chain.pem"
{% endif %}
{% if certificate_provider == "letsencrypt" %} {% if certificate_provider == "letsencrypt" %}
Include /etc/letsencrypt/options-ssl-apache.conf Include /etc/letsencrypt/options-ssl-apache.conf
{% endif %} {% endif %}


Loading…
Cancel
Save