mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 05:23:35 +00:00
This swaps in the actually-in-use munin configuiration file; otherwise, it is an implementation of the configuration as it exists on the machine.
17 lines
380 B
ApacheConf
17 lines
380 B
ApacheConf
Alias /munin /var/cache/munin/www
|
|
<Directory /var/cache/munin/www>
|
|
Require local
|
|
Options None
|
|
</Directory>
|
|
|
|
ScriptAlias /munin-cgi/munin-cgi-graph /usr/lib/munin/cgi/munin-cgi-graph
|
|
<Location /munin-cgi/munin-cgi-graph>
|
|
Require local
|
|
<IfModule mod_fcgid.c>
|
|
SetHandler fcgid-script
|
|
</IfModule>
|
|
<IfModule !mod_fcgid.c>
|
|
SetHandler cgi-script
|
|
</IfModule>
|
|
</Location>
|