2012-02-27 03:09:56 +01:00
|
|
|
---
|
2012-03-03 17:02:14 +01:00
|
|
|
- hosts: all
|
|
|
|
user: root
|
2012-02-24 05:54:16 +01:00
|
|
|
tasks:
|
2012-03-03 16:53:15 +01:00
|
|
|
- include: base.yml
|
2012-02-28 04:48:45 +01:00
|
|
|
- name: configure template & module variables for future template calls
|
|
|
|
action: setup http_port=80 max_clients=200
|
|
|
|
- name: write the apache config file
|
2012-03-03 04:38:55 +01:00
|
|
|
action: template src=/srv/httpd.j2 dest=/etc/httpd.conf
|
2012-02-25 20:42:41 +01:00
|
|
|
notify:
|
|
|
|
- restart apache
|
2012-02-28 04:48:45 +01:00
|
|
|
- name: ensure apache is running
|
|
|
|
action: service name=httpd state=started
|
2012-02-25 20:42:41 +01:00
|
|
|
handlers:
|
2012-03-03 16:53:15 +01:00
|
|
|
- include: handlers.yml
|