Generalized SSL cert and key paths
This commit is contained in:
parent
0c75ba406c
commit
78d97cbb13
@ -9,6 +9,8 @@ nextcloud_subdomain: nextcloud
|
|||||||
nextcloud_www_path: '/var/www/nextcloud/'
|
nextcloud_www_path: '/var/www/nextcloud/'
|
||||||
|
|
||||||
nextcloud_ssl: false
|
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
|
# Apache configuration
|
||||||
|
|
||||||
@ -25,5 +27,3 @@ nextcloud_apache2_config_path: '/etc/apache2/sites-available/nextcloud.conf'
|
|||||||
# Configure with nginx rather than Apache
|
# Configure with nginx rather than Apache
|
||||||
nextcloud_nginx: false
|
nextcloud_nginx: false
|
||||||
nextcloud_nginx_config_path: "/etc/nginx/nginx.conf"
|
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"
|
|
||||||
|
@ -31,8 +31,8 @@ server {
|
|||||||
|
|
||||||
# Use Mozilla's guidelines for SSL/TLS settings
|
# Use Mozilla's guidelines for SSL/TLS settings
|
||||||
# https://mozilla.github.io/server-side-tls/ssl-config-generator/
|
# https://mozilla.github.io/server-side-tls/ssl-config-generator/
|
||||||
ssl_certificate {{ nextcloud_nginx_ssl_certificate_path }};
|
ssl_certificate {{ nextcloud_ssl_certificate_path }};
|
||||||
ssl_certificate_key {{ nextclodu_nginx_ssl_key_path }};
|
ssl_certificate_key {{ nextcloud_ssl_key_path }};
|
||||||
|
|
||||||
# HSTS settings
|
# HSTS settings
|
||||||
# WARNING: Only add the preload option once you read about
|
# WARNING: Only add the preload option once you read about
|
||||||
|
Loading…
x
Reference in New Issue
Block a user