Saltstack Official Nginx Formula
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

21 rinda
493B

  1. {% from "nginx/map.jinja" import nginx with context %}
  2. {% set htauth = nginx.get('htpasswd', '/etc/nginx/.htpasswd') -%}
  3. htpasswd:
  4. pkg.installed:
  5. - name: {{ nginx.apache_utils }}
  6. {% for name, user in pillar.get('users', {}).items() %}
  7. {% if user['webauth'] is defined -%}
  8. nginx_user_{{name}}:
  9. module.run:
  10. - name: basicauth.adduser
  11. - user: {{ name }}
  12. - passwd: {{ user['webauth'] }}
  13. - path: {{ htauth }}
  14. - require:
  15. - pkg: htpasswd
  16. {% endif -%}
  17. {% endfor %}