39 lines
920 B
YAML
39 lines
920 B
YAML
|
---
|
||
|
- name: Configure wiki.z9 with dokuwiki
|
||
|
become: true
|
||
|
hosts: wiki
|
||
|
roles:
|
||
|
- nginx
|
||
|
tasks:
|
||
|
# TODO: make this a role
|
||
|
- name: Install php-fpm
|
||
|
ansible.builtin.apt:
|
||
|
name:
|
||
|
- php-fpm
|
||
|
- php-xml
|
||
|
- php-mbstring
|
||
|
- php-zip
|
||
|
- php-intl
|
||
|
- php-gd
|
||
|
diff: false
|
||
|
- name: Make sure php-fpm is enabled
|
||
|
ansible.builtin.systemd:
|
||
|
service: php7.4-fpm.service
|
||
|
enabled: true
|
||
|
|
||
|
# place dokuwiki zip into /var/www/dokuwiki manually!
|
||
|
- name: Create www dir
|
||
|
become: true
|
||
|
ansible.builtin.file:
|
||
|
path: /var/www
|
||
|
state: directory
|
||
|
owner: nginx
|
||
|
group: nginx
|
||
|
mode: "0755"
|
||
|
- name: Custom php-fpm config
|
||
|
become: true
|
||
|
ansible.builtin.copy:
|
||
|
src: configs/wiki/php-fpm-dokuwiki.conf
|
||
|
dest: /etc/php/7.4/fpm/pool.d/dokuwiki.conf
|
||
|
mode: "0755"
|