-
Notifications
You must be signed in to change notification settings - Fork 5
/
16-multi-handler.yml
56 lines (48 loc) · 1.32 KB
/
16-multi-handler.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
53
54
55
56
# yum and service modules with sudo access
# using selinux module to set the target to permissive mode
---
- hosts: web
become: yes
handlers:
# This handler will restart apache http server
- name: Restart Apache
service:
name: httpd
state: restarted
# This handler will restart nginx server
- name: Restart Nginx
service:
name: nginx
state: restarted
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 install ngixn server
- name: Install Nginx
yum:
name: nginx
state: present
# 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 8081 defined
copy:
src: 12/httpd.conf
dest: /etc/httpd/conf/httpd.conf
notify:
- Restart Apache
# This task will copy custom nginx.conf file to /etc/nginx/nginx.conf
# This will also call the hander Restart Apache
- name: Copy nginx config with port 8090 defined
copy:
src: 16/nginx.conf
dest: /etc/nginx/nginx.conf
notify:
- Restart Nginx