homeserver/roles/mgrote_munin_server/templates/apache.conf

22 lines
557 B
ApacheConf
Raw Normal View History

2024-08-12 14:15:09 +02:00
<VirtualHost *:80>
2024-08-12 14:10:36 +02:00
2024-08-12 14:15:09 +02:00
ServerName {{ munin_servername }}
2024-08-12 12:46:22 +02:00
2024-08-12 14:15:09 +02:00
Alias /munin /var/cache/munin/www
<Directory /var/cache/munin/www>
Require all granted
Options None
</Directory>
ScriptAlias /munin-cgi/munin-cgi-graph /usr/lib/munin/cgi/munin-cgi-graph
<Location /munin-cgi/munin-cgi-graph>
Require all granted
<IfModule mod_fcgid.c>
SetHandler fcgid-script
</IfModule>
<IfModule !mod_fcgid.c>
SetHandler cgi-script
</IfModule>
</Location>
</VirtualHost>