first commit
This commit is contained in:
commit
3bfbd3f7f9
10 changed files with 329 additions and 0 deletions
12
handlers/main.yml
Normal file
12
handlers/main.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
# handlers file for nginx
|
||||
- name: Start and enable nginx
|
||||
ansible.builtin.systemd_service:
|
||||
name: nginx
|
||||
state: started
|
||||
enabled: true
|
||||
|
||||
- name: Reload nginx
|
||||
ansible.builtin.systemd_service:
|
||||
name: nginx
|
||||
state: reloaded
|
Loading…
Add table
Add a link
Reference in a new issue