Added facts for Nginx 2

This commit is contained in:
Guillem Hernandez Sola
2025-06-18 13:56:06 +02:00
parent 5491225a0c
commit 5b506b1727

View File

@@ -1,18 +1,21 @@
- become: yes
hosts: all
---
- hosts: all
- name: Instalar webserver
hosts: webserver
become: yes
roles:
- role: apache2
- role: php
- name: Instalar database
hosts: database
become: yes
roles:
- role: mariadb
- name: Instalar loadbalancer
hosts: loadbalancer
become: yes
roles:
- role: nginx
- role: users