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.

26 rindas
566B

  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. make sure {{ htauth }} exists:
  7. file.exists:
  8. - name: {{ htauth }}
  9. {% for name, user in pillar.get('users', {}).items() %}
  10. {% if user['webauth'] is defined -%}
  11. nginx_user_{{name}}:
  12. module.run:
  13. - name: basicauth.adduser
  14. - user: {{ name }}
  15. - passwd: {{ user['webauth'] }}
  16. - path: {{ htauth }}
  17. - require:
  18. - pkg: htpasswd
  19. {% endif -%}
  20. {% endfor %}