2019-09-05 01:39:01 +00:00
|
|
|
# If using Nextcloud intensively, consider setting apache_high_php_limits in:
|
|
|
|
# /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-04 18:30:57 +00:00
|
|
|
# nextcloud_allow_public_ips: False
|
2019-09-05 01:46:34 +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
|
|
|
|
2017-12-04 15:24:25 +00:00
|
|
|
# REMOVE /opt/nextcloud/version.php TO FORCE AN INSTALL OR REINSTALL OR UPGRADE
|
2017-12-04 14:56:54 +00:00
|
|
|
|
2017-05-29 22:02:55 +00:00
|
|
|
nextcloud_url: /nextcloud
|
|
|
|
nextcloud_prefix: /opt
|
2019-07-05 01:45:43 +00:00
|
|
|
nextcloud_data_dir: "{{ content_base }}/nextcloud/data" # /library/nextcloud/data
|
2020-01-07 23:51:53 +00:00
|
|
|
|
2020-01-08 00:12:21 +00:00
|
|
|
# 2020-01-07: If installing IIAB often, download.nextcloud.com may throttle
|
2020-01-07 23:51:53 +00:00
|
|
|
# you to ~100 kbit/sec, delaying your IIAB install by an hour or more (#2112).
|
2020-01-08 00:12:21 +00:00
|
|
|
# The following line can avoid that: (but might install an older Nextcloud!)
|
2020-01-07 23:51:53 +00:00
|
|
|
# nextcloud_dl_url: http://d.iiab.io/packages
|
2018-10-29 09:46:53 +00:00
|
|
|
nextcloud_dl_url: https://download.nextcloud.com/server/releases
|
2019-05-16 19:48:19 +00:00
|
|
|
|
2019-07-05 01:45:43 +00:00
|
|
|
# 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
|
2019-05-16 21:00:32 +00:00
|
|
|
nextcloud_src_file_old: nextcloud_{{ nextcloud_orig_src_file_old }}
|
2019-07-05 01:45:43 +00:00
|
|
|
# For NEW OS's where PHP 7.1+ is auto-detected -- e.g. Raspbian 10, Debian 10 & Ubuntu 18.04
|
2020-01-07 21:31:43 +00:00
|
|
|
nextcloud_orig_src_file: latest.tar.bz2
|
2019-05-16 21:05:06 +00:00
|
|
|
nextcloud_src_file: nextcloud_{{ nextcloud_orig_src_file }}
|
2017-05-29 22:02:55 +00:00
|
|
|
|
2019-07-05 00:06:30 +00:00
|
|
|
# We install on MySQL with these settings:
|
2017-05-29 22:02:55 +00:00
|
|
|
nextcloud_dbname: nextcloud
|
|
|
|
nextcloud_dbhost: localhost
|
|
|
|
nextcloud_dbuser: nextcloud
|
|
|
|
nextcloud_dbpassword: nextcloudmysql
|
2017-06-19 13:56:54 +00:00
|
|
|
nextcloud_user: nextcloud
|
|
|
|
nextcloud_user_password: nextcloudmysql
|
2017-05-29 22:02:55 +00:00
|
|
|
|
2017-06-26 19:24:58 +00:00
|
|
|
nextcloud_admin_user: 'Admin'
|
|
|
|
nextcloud_admin_password: 'changeme'
|
2017-05-29 22:02:55 +00:00
|
|
|
|
2019-09-04 17:22:49 +00:00
|
|
|
# 2019-09-04: UNUSED (due to changes in roles/nextcloud/templates/nextcloud.conf.j2)
|
2017-05-29 22:02:55 +00:00
|
|
|
nextcloud_required_ip: 10.0.0.0/8 192.168.0.0/16
|