mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 08:21:15 +03:00
52e7d34d38
htpassword configuration
18 lines
385 B
Plaintext
18 lines
385 B
Plaintext
|
|
Alias /munin /var/cache/munin/www
|
|
<Directory /var/cache/munin/www>
|
|
Order Allow,Deny
|
|
Allow from all
|
|
Options FollowSymLinks
|
|
|
|
AuthUserFile /var/lib/awx/.munin_htpasswd
|
|
AuthName "Munin"
|
|
AuthType Basic
|
|
require valid-user
|
|
|
|
<IfModule mod_expires.c>
|
|
ExpiresActive On
|
|
ExpiresDefault M310
|
|
</IfModule>
|
|
</Directory>
|