This repository has been archived on 2023-05-06. You can view files and clone it, but cannot push or open issues or pull requests.
pleroma-ansible-playbook/examples/site.yml

35 lines
615 B
YAML
Raw Normal View History

---
- name: Initialising the site playbook.
hosts: all
roles:
- init
tags:
- always
- name: Installing and configuring PostgreSQL for Pleroma.
hosts: pleroma_database
become: yes
become_method: sudo
roles:
- pleroma-database
tags:
- pleroma-database
- name: Installing and configuring the Pleroma backend.
hosts: pleroma_backend
become: yes
become_method: sudo
roles:
- pleroma-main
tags:
- pleroma-main
- name: Installing and configuring Nginx for Pleroma.
hosts: pleroma_webserver
become: yes
become_method: sudo
roles:
- pleroma-proxy
tags:
- pleroma-proxy