-
Notifications
You must be signed in to change notification settings - Fork 5
/
23-template-apache.yml
53 lines (44 loc) · 1.17 KB
/
23-template-apache.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# yum and service modules with sudo access
# using selinux module to set the target to permissive mode
---
- hosts: web
become: yes
vars:
username: ravi
doc_root: /var/www/html
tasks:
# This task will set the SELinux to Permissive mode
- name: Put SELinux in permissive mode
selinux:
policy: targeted
state: permissive
# This task will install apache http server
- name: Install Apache
yum:
name: httpd
state: present
# This task will start apache http server
- name: Start Apache
service:
name: httpd
state: started
enabled: yes
# This will copy site file
- name: Copy index template from templates
template:
src: 23/templates/index.j2
dest: "{{ doc_root }}/index.html"
# This task will copy custom httpd.conf file to /etc/httpd/conf/httpd.conf
# This will also call the hander Restart Apache
- name: Copy apache config with port 80 defined
copy:
src: 13/httpd.conf
dest: /etc/httpd/conf/httpd.conf
notify:
- Restart Apache
handlers:
# This handler will restart apache http server
- name: Restart Apache
service:
name: httpd
state: restarted