mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
10 lines
206 B
YAML
10 lines
206 B
YAML
---
|
|
- name: Install Nginx
|
|
sudo: yes
|
|
apt: pkg=nginx state=latest
|
|
|
|
- name: Change default nginx site
|
|
sudo: yes
|
|
template: src=default.j2 dest=/etc/nginx/sites-available/default
|
|
notify: restart nginx
|