Explorar el Código

correctly handle selfsigned certificate

master
padre
commit
a7eca6dd56
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. +3
    -1
      templates/apache-vhost.conf.j2

+ 3
- 1
templates/apache-vhost.conf.j2 Ver fichero

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

SSLEngine on
SSLCertificateFile "/etc/ssl/certs/nextcloud.cert.pem"
SSLCertificateChainFile "/etc/ssl/certs/nextcloud.chain.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" %}
Include /etc/letsencrypt/options-ssl-apache.conf
{% endif %}


Cargando…
Cancelar
Guardar