30 lines
809 B
YAML
30 lines
809 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: true
|
|
nextcloud_ssl_certificate_path: "/etc/ssl/certs/ssl-cert-snakeoil.pem"
|
|
nextcloud_ssl_key_path: "/etc/ssl/private/ssl-cert-snakeoil.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"
|