ansible-nginx/doc/auth.md

42 lines
913 B
Markdown
Raw Normal View History

2016-01-12 18:14:36 +07:00
Auth Basic management
=====================
Description
-----------
Auth basic is managed in a separate list. Each auth file can be shared between locations or vhosts.
Each htpasswd has few keys:
- `name`: (M) used to create file and as pointee
- `description`: (M) Used for the message box :)
- `users`: each users is composed with 3 keys: `name` (M), `password` (M) and `state` present/absent (default: present)
- `state`: (O) present or absent. Default: present
`nginx_htpasswd` should be placed in a vaut file.
2016-01-12 20:48:53 +07:00
Example
2016-01-12 18:14:36 +07:00
-------
```
nginx_vhosts:
# htpasswd on all vhost
- name: test.local
2016-03-09 17:20:19 +07:00
htpasswd: 'hello'
2016-01-12 18:14:36 +07:00
template: '_base'
# htpasswd only in /hello
- name: test-location.local
template: '_base'
location:
'/hello':
2016-03-09 17:20:19 +07:00
- htpasswd: 'hello'
2016-01-12 18:14:36 +07:00
nginx_htpasswd:
- name: 'hello'
description: 'Please login!'
users:
- name: 'bob'
password: 'my_pass'
```