소스 검색

Fix letencrypt configugration inclusion in sys and pma for nginx

Emmanuel Bouthenot 8 년 전
부모
커밋
ef34ca446f
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      roles/webserver/templates/nginx/pma_vhost.j2
  2. 1 1
      roles/webserver/templates/nginx/sys_vhost.j2

+ 1 - 1
roles/webserver/templates/nginx/pma_vhost.j2

@@ -15,7 +15,7 @@ server {
     error_log   /var/log/nginx/pma.error.log;
 
 {% if phpmyadmin_ssl %}
-    include letsencrypt_sh;
+    include letsencrypt;
 {% endif %}
 
 {% if phpmyadmin_ssl and ssl_certs_auto_installed.stdout_lines is defined and phpmyadmin_vhostname in ssl_certs_auto_installed.stdout_lines %}

+ 1 - 1
roles/webserver/templates/nginx/sys_vhost.j2

@@ -15,7 +15,7 @@ server {
     error_log   /var/log/nginx/sys.error.log;
 
 {% if phpsyscheck_ssl %}
-    include letsencrypt_sh;
+    include letsencrypt;
 {% endif %}
 
 {% if phpsyscheck_ssl and ssl_certs_auto_installed.stdout_lines is defined and phpsyscheck_vhostname in ssl_certs_auto_installed.stdout_lines %}