1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 19:52:06 +00:00
iiab/roles/nextcloud/defaults/main.yml

52 lines
2 KiB
YAML
Raw Normal View History

2020-02-16 03:49:27 +00:00
# If using Nextcloud intensively, consider setting nginx_high_php_limits in:
2019-09-05 01:39:01 +00:00
# /etc/iiab/local_vars.yml
2019-04-25 17:14:48 +00:00
# nextcloud_install: False
# nextcloud_enabled: False
2019-09-04 19:10:41 +00:00
2019-09-05 01:39:01 +00:00
# Configuration tips for IPv4 access controls and tuning RAM/resources:
# https://github.com/iiab/iiab/blob/master/roles/nextcloud/README.md
2019-04-25 17:14:48 +00:00
# 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!
2017-05-29 22:02:55 +00:00
# 2020-01-07: If installing IIAB often, download.nextcloud.com may throttle
# you to ~100 kbit/sec, delaying your IIAB install by an hour or more (#2112).
# The following line can avoid that: (but might install an older Nextcloud!)
2020-02-16 03:49:27 +00:00
# nextcloud_dl_url: http://d.iiab.io/packages/latest.tar.bz2
nextcloud_dl_url: https://download.nextcloud.com/server/releases/latest.tar.bz2
2017-05-29 22:02:55 +00:00
nextcloud_url: /nextcloud
nextcloud_base_dir: "{{ doc_base }}" # /library/www
#nextcloud_base_dir: "{{ doc_root }}" # /library/www/html
nextcloud_root_dir: "{{ nextcloud_base_dir }}/nextcloud"
#
# 2020-02-16 options...
# /opt/nextcloud <-- Old Nextcloud recommendation
# /var/www/nextcloud <-- Nextcloud recommendation
# /library/nextcloud <-- Old IIAB recommendation
# /library/www/nextcloud <-- IIAB RECOMMENDATION FOR NOW ?
# /library/www/html/nextcloud <-- Bad idea? Security & privacy consequences?
#
# IN ANY CASE, PLEASE VERIFY nextcloud/config/config.php AFTER INSTALLATION!
#
# Nextcloud's default for now--OR PUT PERSONAL DATA ON ANOTHER DRIVE/PARTITION:
nextcloud_data_dir: "{{ nextcloud_root_dir }}/data" # /library/www/nextcloud
# We install on MySQL with these settings:
2017-05-29 22:02:55 +00:00
nextcloud_dbname: nextcloud
nextcloud_dbuser: nextcloud
nextcloud_dbpassword: nextcloudmysql
nextcloud_admin_user: 'Admin'
nextcloud_admin_password: 'changeme'
2017-05-29 22:02:55 +00:00
2020-05-10 00:06:53 +00:00
# 2020-05-09: Not functional but still templated by templates/nextcloud.conf.j2
nextcloud_required_ip: 10.0.0.0/8 192.168.0.0/16
2020-02-16 04:19:36 +00:00
# 2020-02-15: UNUSED at the time. Legacy remains from Apache:
# nextcloud_allow_public_ips: True