mirror of
https://git.libreschool.org/paspo/brasatore.git
synced 2024-11-21 21:58:44 +00:00
24 lines
507 B
YAML
24 lines
507 B
YAML
---
|
|
- name: NGINX site config
|
|
template:
|
|
src: nginx.conf
|
|
dest: /etc/nginx/sites-available/pxe
|
|
owner: root
|
|
group: root
|
|
mode: "0644"
|
|
become: true
|
|
notify: nginx_restart
|
|
|
|
- name: NGINX remove default config
|
|
ansible.builtin.file:
|
|
path: /etc/nginx/sites-enabled/default
|
|
state: absent
|
|
notify: nginx_restart
|
|
|
|
- name: NGINX enable site
|
|
ansible.builtin.file:
|
|
src: /etc/nginx/sites-available/pxe
|
|
dest: /etc/nginx/sites-enabled/pxe
|
|
state: link
|
|
notify: nginx_restart
|