ansible-role-nextcloud/tasks/php.yml

20 lines
410 B
YAML
Raw Normal View History

2020-12-03 15:52:14 +01:00
---
2020-12-03 23:14:27 +01:00
- name: "PHP FPM-Nutzer anlegen"
2020-12-03 15:52:14 +01:00
user:
name: "{{ common_name }}"
create_home: no
password: "!"
2020-12-03 23:54:55 +01:00
groups: "{{ common_name }},redis"
2020-12-03 15:52:14 +01:00
shell: /bin/false
state: present
2020-12-03 23:14:27 +01:00
- name: "PHP FPM-Pool einrichten"
2020-12-03 15:52:14 +01:00
template:
src: php_fpm_pool.j2
dest: "/etc/php/{{ php_version }}/fpm/pool.d/{{ common_name }}.conf"
owner: root
group: root
mode: 0644
notify: restart phpfpm