From 79a08d8a05ecdf4c64131418eefa39da94521bd3 Mon Sep 17 00:00:00 2001 From: Corbin Bartsch Date: Sun, 10 Apr 2022 16:33:05 -0400 Subject: [PATCH] Updated default variables --- defaults/main.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/defaults/main.yaml b/defaults/main.yaml index ba11596..381751f 100644 --- a/defaults/main.yaml +++ b/defaults/main.yaml @@ -1,10 +1,10 @@ --- # Your domain name for web server configuration -domain_name: '' +domain_name: 'localdomain' # The subdomain at which you'd like Nextcloud to be accessible at -nextcloud_subdomain: "{{ ansible_hostname }}" +nextcloud_subdomain: nextcloud nextcloud_www_path: '/var/www/nextcloud/' @@ -24,6 +24,6 @@ nextcloud_apache2_config_path: '/etc/apache2/sites-available/nextcloud.conf' # Configure with nginx rather than Apache nextcloud_nginx: false -nextcloud_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"