mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 11:42:08 +00:00
40 lines
1.6 KiB
YAML
40 lines
1.6 KiB
YAML
# nextcloud_install: False
|
|
# nextcloud_enabled: False
|
|
|
|
# nextcloud_allow_public_ips: False
|
|
# To further refine Nextcloud access controls based on IPv4 addresses, see:
|
|
# https://github.com/iiab/iiab/blob/master/roles/nextcloud/templates/nextcloud.conf.j2
|
|
|
|
# All above are set in: github.com/iiab/iiab/blob/master/vars/default_vars.yml
|
|
# If nec, change them by editing /etc/iiab/local_vars.yml prior to installing!
|
|
|
|
# If using Nextcloud intensively, consider setting apache_high_php_limits in:
|
|
# /etc/iiab/local_vars.yml
|
|
|
|
# REMOVE /opt/nextcloud/version.php TO FORCE AN INSTALL OR REINSTALL OR UPGRADE
|
|
|
|
nextcloud_url: /nextcloud
|
|
nextcloud_prefix: /opt
|
|
nextcloud_data_dir: "{{ content_base }}/nextcloud/data" # /library/nextcloud/data
|
|
nextcloud_dl_url: https://download.nextcloud.com/server/releases
|
|
|
|
# For OLD OS's where PHP 7.1+ isn't detected -- e.g. Raspbian 9, Debian 9, Ubuntu 16.04
|
|
nextcloud_orig_src_file_old: latest-15.tar.bz2
|
|
nextcloud_src_file_old: nextcloud_{{ nextcloud_orig_src_file_old }}
|
|
# For NEW OS's where PHP 7.1+ is auto-detected -- e.g. Raspbian 10, Debian 10 & Ubuntu 18.04
|
|
nextcloud_orig_src_file: latest-16.tar.bz2
|
|
nextcloud_src_file: nextcloud_{{ nextcloud_orig_src_file }}
|
|
|
|
# We install on MySQL with these settings:
|
|
nextcloud_dbname: nextcloud
|
|
nextcloud_dbhost: localhost
|
|
nextcloud_dbuser: nextcloud
|
|
nextcloud_dbpassword: nextcloudmysql
|
|
nextcloud_user: nextcloud
|
|
nextcloud_user_password: nextcloudmysql
|
|
|
|
nextcloud_admin_user: 'Admin'
|
|
nextcloud_admin_password: 'changeme'
|
|
|
|
# 2019-09-04: UNUSED (due to changes in roles/nextcloud/templates/nextcloud.conf.j2)
|
|
nextcloud_required_ip: 10.0.0.0/8 192.168.0.0/16
|