mirror of https://github.com/zulip/zulip.git
puppet: Rename "wiki" realm to "monitoring".
This is vestigial. It requires manually altering the `htdigest` file (not stored in this repo) to change the digest realm from `wiki` to `monitoring`, and will re-prompt users for their passwords if the browsers currently store them.
This commit is contained in:
parent
080014abcc
commit
8b1d49dbc7
|
@ -27,9 +27,9 @@ Alias /munin /var/cache/munin/www
|
|||
#
|
||||
|
||||
AuthType Digest
|
||||
AuthName "wiki"
|
||||
AuthName "monitoring"
|
||||
AuthDigestProvider file
|
||||
AuthUserFile /etc/apache2/users/wiki
|
||||
AuthUserFile /etc/apache2/users/monitoring
|
||||
Require valid-user
|
||||
|
||||
# This next part requires mod_expires to be enabled.
|
||||
|
@ -62,9 +62,9 @@ Alias /munin /var/cache/munin/www
|
|||
ScriptAlias /munin-cgi/munin-cgi-graph /usr/lib/munin/cgi/munin-cgi-graph
|
||||
<Location /munin-cgi/munin-cgi-graph>
|
||||
AuthType Digest
|
||||
AuthName "wiki"
|
||||
AuthName "monitoring"
|
||||
AuthDigestProvider file
|
||||
AuthUserFile /etc/apache2/users/wiki
|
||||
AuthUserFile /etc/apache2/users/monitoring
|
||||
Require valid-user
|
||||
|
||||
<IfModule mod_fcgid.c>
|
||||
|
@ -78,9 +78,9 @@ ScriptAlias /munin-cgi/munin-cgi-graph /usr/lib/munin/cgi/munin-cgi-graph
|
|||
ScriptAlias /munin-cgi/munin-cgi-html /usr/lib/munin/cgi/munin-cgi-html
|
||||
<Location /munin-cgi/munin-cgi-html>
|
||||
AuthType Digest
|
||||
AuthName "wiki"
|
||||
AuthName "monitoring"
|
||||
AuthDigestProvider file
|
||||
AuthUserFile /etc/apache2/users/wiki
|
||||
AuthUserFile /etc/apache2/users/monitoring
|
||||
Require valid-user
|
||||
|
||||
<IfModule mod_fcgid.c>
|
||||
|
|
|
@ -18,7 +18,7 @@ class zulip_ops::apache {
|
|||
mode => '0600',
|
||||
}
|
||||
|
||||
file { '/etc/apache2/users/wiki':
|
||||
file { '/etc/apache2/users/monitoring':
|
||||
ensure => file,
|
||||
require => File['/etc/apache2/users/'],
|
||||
owner => 'www-data',
|
||||
|
|
|
@ -27,9 +27,9 @@
|
|||
|
||||
<Location "/">
|
||||
AuthType Digest
|
||||
AuthName "wiki"
|
||||
AuthName "monitoring"
|
||||
AuthDigestProvider file
|
||||
AuthUserFile /etc/apache2/users/wiki
|
||||
AuthUserFile /etc/apache2/users/monitoring
|
||||
Require valid-user
|
||||
</Location>
|
||||
|
||||
|
|
Loading…
Reference in New Issue