23 lines
530 B
YAML
23 lines
530 B
YAML
---
|
|
- name: Deploy Pleroma
|
|
hosts: pleroma
|
|
vars:
|
|
certbot_auto_renew: true
|
|
certbot_install_method: package
|
|
certbot_create_method: webroot
|
|
certbot_admin_email: potra4en@gmail.com
|
|
certbot_create_if_missing: true
|
|
certbot_certs:
|
|
- email: potra4en@gmail.com
|
|
webroot: /var/lib/letsencrypt/
|
|
domains:
|
|
- "{{ pleroma_building_domain }}"
|
|
|
|
roles:
|
|
- base
|
|
- pleroma_preinstall
|
|
- pleroma_building
|
|
- pleroma_postinstall
|
|
- geerlingguy.certbot
|
|
- nginx
|
|
- creds
|