Compare commits

..

No commits in common. "6a938ea6b3f6110ec03c81bd604986683c590ab7" and "145dcfe3fb486522e0e724dbafc5c70b85ea39a3" have entirely different histories.

5 changed files with 3 additions and 8 deletions

View File

@ -41,7 +41,7 @@
vars: vars:
postgresql_global_config_options: postgresql_global_config_options:
- option: listen_addresses - option: listen_addresses
value: 192.168.103.1,172.23.103.1,127.0.0.1 value: 192.168.103.1,172.23.103.1
postgresql_hba_entries: postgresql_hba_entries:
- { type: local, database: all, user: postgres, auth_method: peer } - { type: local, database: all, user: postgres, auth_method: peer }
- { type: local, database: all, user: all, auth_method: md5 } - { type: local, database: all, user: all, auth_method: md5 }
@ -52,14 +52,12 @@
# Allow hosts over zerotier # Allow hosts over zerotier
- { type: host, database: all, user: all, address: '172.23.0.0/16', auth_method: md5 } - { type: host, database: all, user: all, address: '172.23.0.0/16', auth_method: md5 }
postgresql_users: postgresql_users:
- name: grafana
password: "{{ secret_grafana_local_db_pass }}"
- name: gulagbot - name: gulagbot
password: "{{ secret_gulagbot_local_db_pass }}" password: "{{ secret_gulagbot_local_db_pass }}"
- name: grafana
password: "{{ secret_grafana_local_db_pass }}"
- name: firefly - name: firefly
password: "{{ secret_firefly_db_pass }}" password: "{{ secret_firefly_db_pass }}"
- name: nagios
password: "{{ secret_postgresql_monitoring_password }}"
postgresql_databases: postgresql_databases:
- name: gulagbot - name: gulagbot
owner: gulagbot owner: gulagbot

View File

@ -12,6 +12,3 @@
- /data/nextcloud/themes:/var/www/html/themes - /data/nextcloud/themes:/var/www/html/themes
- /srv/desu.ltd/nc:/var/www/html/data - /srv/desu.ltd/nc:/var/www/html/data
tags: [ docker, nextcloud ] tags: [ docker, nextcloud ]
- name: assure nextcloud cronjob
cron: user=root name=nextcloud minute=*/5 job="docker exec --user www-data -it nextcloud php -f /var/www/html/cron.php"
tags: [ docker, nextcloud, cron ]