dnsservice/ansible/tasks/caddy.yml

28 lines
657 B
YAML

# vi: ft=yaml.ansible
- name: install caddy
apt:
deb: https://github.com/caddyserver/caddy/releases/download/v2.8.4/caddy_2.8.4_linux_amd64.deb
- name: install php
apt:
name: php
- name: install php-sqlite3
apt:
name: php-sqlite3
- name: install php-mbstring
apt:
name: php-mbstring
- name: install php-fpm
apt:
name: php-fpm
- name: ensure php-fpm is running
service: name=php8.2-fpm state=started enabled=yes
- name: ensure /run/caddy exists
file:
path: /run/caddy
state: directory
mode: '0755'
owner: caddy
group: caddy
- name: ensure caddy is running
service: name=caddy state=started enabled=yes