1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- ---
- NEXTCLOUD_VERSION: 24.0.5
- NEXTCLOUD_TARBALL: "nextcloud-{{ NEXTCLOUD_VERSION }}.tar.bz2"
- NEXTCLOUD_URL: "https://download.nextcloud.com/server/releases/{{ NEXTCLOUD_TARBALL }}"
- NEXTCLOUD_GPG: "https://nextcloud.com/nextcloud.asc"
- GPG_FINGERPRINT: "28806A878AE423A28372792ED75899B9A724937A"
- php_version: 8.1
- PHP_POST_LIMIT: 50G
- PHP_UPLOAD_LIMIT: 25G
- PHP_MAX_FILE: 200
- PHP_MAX_TIME: 3600
- PHP_MEMORY_LIMIT: 512M
- APC_SHM_SIZE: 128M
- OPCACHE_MEM_SIZE: 128M
- add_php_fpm: true
- nc_pm: "ondemand"
- nc_pm_max_children: 80
- nc_pm_start_servers: 2
- nc_pm_min_spare_servers: 1
- nc_pm_max_spare_servers: 3
- use_redis_server: false
- redis_host: "127.0.0.1"
- nextcloud_trusted_domain: "nextcloud.test"
- nextcloud_ipv6: false
- debug_speed: false
- nextcloud_instance_name: "{{ nextcloud_trusted_domain }}"
- nextcloud_install_websrv: true
- nextcloud_websrv: "apache2"
- nextcloud_disable_websrv_default_site: false
- nextcloud_websrv_template: "templates/{{ nextcloud_websrv }}_nc.j2"
- nc_data_dir: "/srv/data"
- nc_admin_name: "pedro"
- nc_admin_pwd: "pedro"
- nc_loglevel: 2
- nc_log_rotate_size: 10485760
- nc_background_cron: true
- nc_cron_period: 10
- nextcloud_config_settings:
- - { name: 'default_phone_region', value: 'BE' }
- - { name: 'open_basedir', value: '/dev/urandom' }
- - { name: 'mysql.utf8mb4', value: 'true' }
- - { name: 'updater.release.channel', value: 'production' }
- - { name: 'mail_smtpmode', value: 'smtp' }
- - { name: 'mail_domain', value: 'uclouvain.be' }
- - { name: 'mail_smtphost', value: 'smtp.sgsi.ucl.ac.be' }
- - { name: 'mail_smtpauthtype', value: 'LOGIN' }
- - { name: 'overwrite.cli.url', value: 'https://{{ nextcloud_trusted_domain }}' }
- - { name: 'overwritehost', value: 'nextcloud.test' }
- - { name: 'overwriteprotocol', value: 'https' }
- db_host: "127.0.0.1"
- nc_db_name: "nextcloudb"
- nc_db_user: "web"
- nc_db_password: "secret"
- nextcloud_apps:
- - twofactor_totp
- - deck
- - tasks
- - calendar
- - contacts
- - apporder
- nc_collabora: false
|