Browse Source

Fix letencrypt configugration inclusion in sys and pma for nginx

Emmanuel Bouthenot 7 years ago
parent
commit
ef34ca446f

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