2022-04-12 12:31:28 -04:00

30 lines
860 B
YAML

---
# Your domain name for web server configuration
domain_name: 'localdomain'
# The major version of Nextcloud to install
nextcloud_version: 23
# The subdomain at which you'd like Nextcloud to be accessible at
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
# If using mod_fcgi rather than the standard mod_php, we should also enable mod_setenvif
nextcloud_apache2_fcgi: false
nextcloud_apache2_config_path: '/etc/apache2/sites-available/nextcloud.conf'
# nginx configuration
# Configure with nginx rather than Apache
nextcloud_nginx: false
nextcloud_nginx_config_path: "/etc/nginx/nginx.conf"