7cf3af2972
Fixes #70
26 lines
566 B
Plaintext
26 lines
566 B
Plaintext
{% from "nginx/map.jinja" import nginx with context %}
|
|
{% set htauth = nginx.get('htpasswd', '/etc/nginx/.htpasswd') -%}
|
|
|
|
htpasswd:
|
|
pkg.installed:
|
|
- name: {{ nginx.apache_utils }}
|
|
|
|
make sure {{ htauth }} exists:
|
|
file.exists:
|
|
- name: {{ htauth }}
|
|
|
|
{% for name, user in pillar.get('users', {}).items() %}
|
|
{% if user['webauth'] is defined -%}
|
|
|
|
nginx_user_{{name}}:
|
|
module.run:
|
|
- name: basicauth.adduser
|
|
- user: {{ name }}
|
|
- passwd: {{ user['webauth'] }}
|
|
- path: {{ htauth }}
|
|
- require:
|
|
- pkg: htpasswd
|
|
|
|
{% endif -%}
|
|
{% endfor %}
|