ソースを参照

correctly handle selfsigned certificate

master
コミット
a7eca6dd56
1個のファイルの変更3行の追加1行の削除
  1. +3
    -1
      templates/apache-vhost.conf.j2

+ 3
- 1
templates/apache-vhost.conf.j2 ファイルの表示

@@ -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 %}


読み込み中…
キャンセル
保存