mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2025-01-10 20:00:18 +01:00
10 lines
275 B
YAML
10 lines
275 B
YAML
---
|
|
# This Playbook adds a webserver into the the web cluster
|
|
|
|
- hosts: webservers
|
|
user: root
|
|
serial: 1
|
|
tasks:
|
|
- include: ../roles/webtier/tasks/install_httpd.yml
|
|
- include: ../roles/webtier/tasks/copy_code.yml
|
|
- include: ../roles/webtier/tasks/add_to_lb.yml
|