mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2025-01-11 04:10:17 +01:00
11 lines
275 B
YAML
11 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
|