homeserver/roles/mgrote_munin_server/templates/apache.conf

18 lines
485 B
ApacheConf
Raw Normal View History

2024-08-12 14:02:02 +02:00
ServerName {{ ansible_fqdn }}
2024-08-12 13:56:10 +02:00
Alias /munin /var/cache/munin/www
2024-08-12 12:46:22 +02:00
<Directory /var/cache/munin/www>
2024-08-12 13:43:49 +02:00
Require all granted
2024-08-12 13:40:31 +02:00
Options None
2024-08-12 12:46:22 +02:00
</Directory>
2024-08-12 13:40:31 +02:00
ScriptAlias /munin-cgi/munin-cgi-graph /usr/lib/munin/cgi/munin-cgi-graph
<Location /munin-cgi/munin-cgi-graph>
2024-08-12 13:43:49 +02:00
Require all granted
2024-08-12 12:46:22 +02:00
<IfModule mod_fcgid.c>
SetHandler fcgid-script
</IfModule>
<IfModule !mod_fcgid.c>
SetHandler cgi-script
</IfModule>
</Location>