tlu/salt/states/nginx/init.sls
2021-10-22 16:19:31 +02:00

18 lines
325 B
Plaintext

Install nginx:
pkg.installed:
- name: nginx
configure www configuration:
file.managed:
- name: /etc/nginx/vhosts.d/www.conf
- source: salt://nginx/files/www.conf
- template: jinja
- user: root
- group: root
- mode: "0644"
Start nginx:
service.running:
- name: nginx
enable: True