mirror of
https://gitlab.archlinux.org/archlinux/infrastructure.git
synced 2025-01-18 08:06:16 +01:00
17 lines
427 B
YAML
17 lines
427 B
YAML
- name: Install php7-fpm
|
|
pacman: name=php7-fpm,php7-gd,php7-pgsql state=present
|
|
|
|
- name: Install php7-fpm units
|
|
copy: >
|
|
src={{ item }} dest=/etc/systemd/system/{{ item }}
|
|
owner=root group=root mode=0644
|
|
with_items:
|
|
- php-fpm7@.socket
|
|
- php-fpm7@.service
|
|
notify: Daemon reload
|
|
|
|
- name: Configure default php.ini
|
|
template: >
|
|
src=php.ini.j2 dest=/etc/php7/php.ini
|
|
owner=root group=root mode=0644
|