Brak opisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.yml 745B

123456789101112131415161718
  1. nextcloud_subdomain: "cloud"
  2. nextcloud_domain: "{{ nextcloud_subdomain }}.{{ domain }}"
  3. # When you increase the version, run this manually after installing / upgrading:
  4. # cd /var/www/nextcloud
  5. # sudo -u www-data php occ upgrade
  6. nextcloud_version: "22.2.0"
  7. nextcloud_admin_username: "{{ main_user_name }}"
  8. nextcloud_admin_password: "{{ lookup('password', secret + '/' + 'nextcloud_admin_password length=32') }}"
  9. nextcloud_db_username: nextclouduser
  10. nextcloud_db_password: "{{ lookup('password', secret + '/' + 'nextcloud_db_password length=32') }}"
  11. nextcloud_db_database: nextcloud
  12. # must match values in roles/common
  13. db_admin_username: 'postgres'
  14. db_admin_password: "{{ lookup('password', secret + '/' + 'db_admin_password length=32') }}"