1
0
Fork 0
This repository has been archived on 2023-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
fedihub-ansible/roles/matrix/tasks/nginx.yml

19 lines
455 B
YAML

---
- name: Create Nginx server configuration
template:
src: '../templates/nginx/matrix.conf'
dest: '/etc/nginx/sites-available/matrix.conf'
mode: 'u=rw,g=rw,o=r'
owner: root
group: root
notify: Restart Nginx
- name: Enable Nginx server configuration
file:
state: link
src: '/etc/nginx/sites-available/matrix.conf'
dest: '/etc/nginx/sites-enabled/matrix.conf'
owner: root
group: root
notify: Restart Nginx