From 67a8d267aa857d587aaf77a56088ab664411706d Mon Sep 17 00:00:00 2001 From: Kris Lamoureux Date: Sat, 13 Jul 2019 00:22:36 -0400 Subject: [PATCH] Small changes from production Refined gitignore. Moved testing variables back to group_vars. --- .gitignore | 4 ++-- group_vars/all.yml | 15 +++++++++++++++ 2 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 group_vars/all.yml diff --git a/.gitignore b/.gitignore index 01be70a..77607d8 100644 --- a/.gitignore +++ b/.gitignore @@ -6,9 +6,9 @@ # Production files *.yml -host_vars/** +host_vars # Testing env exceptions !testing.yml -!./host_vars/all.yml +!all.yml diff --git a/group_vars/all.yml b/group_vars/all.yml new file mode 100644 index 0000000..65cd2da --- /dev/null +++ b/group_vars/all.yml @@ -0,0 +1,15 @@ +## Nextcloud Configuration ## +nc_version: 16.0.3 +nc_sha256sum: a13f68ce47a1362318629ba5b118a59fa98358bb18f4afc371ea15104f2881f3 + +nc_domain: www.example.com +nc_docroot: /var/www/nextcloud +nc_data: /var/www/nextcloud/data + +nc_db: nextcloud +nc_db_user: nextcloud +nc_db_pass: nc+password + +nc_admin: admin +nc_admin_pass: ncadmin+password +