Update Nextcloud role to include Hiddenservice tasks
This commit is contained in:
parent
7f42bc9fd2
commit
63eb7d74f7
23 changed files with 282 additions and 244 deletions
|
@ -1,22 +1,22 @@
|
|||
---
|
||||
- name: "redis: Aktiviere Socket"
|
||||
lineinfile:
|
||||
- name: "Redis | Aktiviere Socket"
|
||||
ansible.builtin.lineinfile:
|
||||
path: "{{ redis_config_file }}"
|
||||
regexp: '^# unixsocket /var/run/redis/redis-server.sock'
|
||||
line: 'unixsocket /var/run/redis/redis-server.sock'
|
||||
|
||||
- name: "redis: Socket-Berechtigungen stetzen"
|
||||
lineinfile:
|
||||
- name: "Redis | Setze Socket-Berechtigungen"
|
||||
ansible.builtin.lineinfile:
|
||||
path: "{{ redis_config_file }}"
|
||||
regexp: '^# unixsocketperm 700'
|
||||
line: 'unixsocketperm 770'
|
||||
|
||||
- name: "redis: Ermittle Anzahl der NC-Instanzen"
|
||||
set_fact:
|
||||
- name: "Redis | Ermittle Anzahl der NC-Instanzen"
|
||||
ansible.builtin.set_fact:
|
||||
instances_number: "{{ nextcloud_instances | length }}"
|
||||
|
||||
- name: "redis: Konfiguriere Anzahl der Datenbanken"
|
||||
lineinfile:
|
||||
- name: "Redis | Konfiguriere Anzahl der Datenbanken"
|
||||
ansible.builtin.lineinfile:
|
||||
path: "{{ redis_config_file }}"
|
||||
regexp: '^databases 16$'
|
||||
line: 'databases {{ instances_number }}'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue