diff --git a/defaults/main.yaml b/defaults/main.yaml index 381751f..2ca9a7e 100644 --- a/defaults/main.yaml +++ b/defaults/main.yaml @@ -9,6 +9,8 @@ nextcloud_subdomain: nextcloud nextcloud_www_path: '/var/www/nextcloud/' nextcloud_ssl: false +nextcloud_ssl_certificate_path: "/etc/ssl/nginx/{{ nextcloud_subdomain }}.{{ domain_name }}.crt" +nextcloud_ssl_key_path: "/etc/ssl/nginx/{{ nextcloud_subdomain }}.{{ domain_name }}.key" # Apache configuration @@ -25,5 +27,3 @@ nextcloud_apache2_config_path: '/etc/apache2/sites-available/nextcloud.conf' # Configure with nginx rather than Apache nextcloud_nginx: false nextcloud_nginx_config_path: "/etc/nginx/nginx.conf" -nextcloud_nginx_ssl_certificate_path: "/etc/ssl/nginx/{{ nextcloud_subdomain }}.{{ domain_name }}.crt" -nextcloud_nginx_ssl_key_path: "/etc/ssl/nginx/{{ nextcloud_subdomain }}.{{ domain_name }}.key" diff --git a/templates/nginx.conf.j2 b/templates/nginx.conf.j2 index 91486d9..7e673b0 100644 --- a/templates/nginx.conf.j2 +++ b/templates/nginx.conf.j2 @@ -31,8 +31,8 @@ server { # Use Mozilla's guidelines for SSL/TLS settings # https://mozilla.github.io/server-side-tls/ssl-config-generator/ - ssl_certificate {{ nextcloud_nginx_ssl_certificate_path }}; - ssl_certificate_key {{ nextclodu_nginx_ssl_key_path }}; + ssl_certificate {{ nextcloud_ssl_certificate_path }}; + ssl_certificate_key {{ nextcloud_ssl_key_path }}; # HSTS settings # WARNING: Only add the preload option once you read about