소스 검색

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


불러오는 중...
취소
저장