mirror of
https://github.com/MichaelCade/90DaysOfDevOps.git
synced 2025-01-10 15:17:03 +07:00
11 lines
250 B
YAML
11 lines
250 B
YAML
- hosts: webservers
|
|
become: yes
|
|
vars:
|
|
http_port: 8000
|
|
https_port: 4443
|
|
html_welcome_msg: "Hello 90DaysOfDevOps - Welcome to Day 66!"
|
|
tasks:
|
|
- import_tasks: tasks/apache2_install.yml
|
|
|
|
handlers:
|
|
- import_tasks: handlers/main.yml |