nextcloud: Eigener PHP-FPM-Master pro Nextcloud-Instanz
This commit is contained in:
parent
230c3f538f
commit
a996e6ebeb
19 changed files with 231 additions and 105 deletions
15
tasks/user.yml
Normal file
15
tasks/user.yml
Normal file
|
@ -0,0 +1,15 @@
|
|||
---
|
||||
- name: "user | {{ instance.name }} | Nextcloud-System-Nutzer anlegen"
|
||||
user:
|
||||
name: "{{ instance.user }}"
|
||||
create_home: false
|
||||
password_lock: true
|
||||
groups: redis
|
||||
shell: /bin/false
|
||||
state: present
|
||||
|
||||
- name: "user | {{ instance.name }} | Füge www-data zur Nextcloud-Nutzer-Gruppe hinzu"
|
||||
user:
|
||||
name: www-data
|
||||
groups: "{{ instance.user }}"
|
||||
append: true
|
Loading…
Add table
Add a link
Reference in a new issue