Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. {% if nginx.sites is defined and nginx.sites %}
  2. {% for site, site_data in nginx.sites.items() %}
  3. nginx_site_{{nginx.conf_d}}/{{site}}.conf:
  4. file.managed:
  5. - name: {{nginx.conf_d}}/{{site}}.conf
  6. - template: jinja
  7. - user: root
  8. - group: root
  9. - mode: 0644
  10. - source: salt://nginx/templates/nginx_site.conf.jinja
  11. - require:
  12. - pkg: nginx
  13. - watch_in:
  14. - service: nginx
  15. {% endfor %}
  16. {% endif %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement