infra/roles/webserver/tasks/packages.yml

13 lines
200 B
YAML
Raw Normal View History

2020-04-17 16:15:20 +00:00
- name: webserver-pkg
apt:
name:
- nginx
- php-fpm
- php-curl
- php-gd
- php-intl
- php-sqlite3
- php-mbstring
state: present
update_cache: yes