aboutsummaryrefslogtreecommitdiff
path: root/files/munin
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2016-02-08 03:36:43 -0200
committerSilvio Rhatto <rhatto@riseup.net>2016-02-08 03:36:43 -0200
commita9c544369f3999b868cfc1eb0dcb10e050defcc1 (patch)
tree2f06ad6d179f2677368b2ec7d0932d5aaa0ad2ea /files/munin
parent6097bca6f5302765007f65a52f87999dbaefcff9 (diff)
downloadpuppet-nodo-a9c544369f3999b868cfc1eb0dcb10e050defcc1.tar.gz
puppet-nodo-a9c544369f3999b868cfc1eb0dcb10e050defcc1.tar.bz2
Initial cleanup
Remove munin, fstab, crypttab, gdm and old subsystems. This major change is motivated by the fact that the configuration has grown too much along the years and is difficult to maintain. Simplification is then necessary to keep going.
Diffstat (limited to 'files/munin')
-rw-r--r--files/munin/apache.conf86
1 files changed, 0 insertions, 86 deletions
diff --git a/files/munin/apache.conf b/files/munin/apache.conf
deleted file mode 100644
index 6224281..0000000
--- a/files/munin/apache.conf
+++ /dev/null
@@ -1,86 +0,0 @@
-# Enable this for template generation
-Alias /munin /var/cache/munin/www
-
-# Enable this for cgi-based templates
-#Alias /munin-cgi/static /var/cache/munin/www/static
-#ScriptAlias /munin-cgi /usr/lib/munin/cgi/munin-cgi-html
-#<Location /munin-cgi>
-# Order allow,deny
-# Allow from localhost 127.0.0.0/8 ::1
-# AuthUserFile /etc/munin/munin-htpasswd
-# AuthName "Munin"
-# AuthType Basic
-# require valid-user
-#</Location>
-
-<Directory /var/cache/munin/www>
- #Order allow,deny
- #Allow from localhost 127.0.0.0/8 ::1
- Options None
-
- # This file can be used as a .htaccess file, or a part of your apache
- # config file.
- #
- # For the .htaccess file option to work the munin www directory
- # (/var/cache/munin/www) must have "AllowOverride all" or something
- # close to that set.
- #
-
- # AuthUserFile /etc/munin/munin-htpasswd
- # AuthName "Munin"
- # AuthType Basic
- # require valid-user
-
- # This next part requires mod_expires to be enabled.
- #
-
- # Set the default expiration time for files to 5 minutes 10 seconds from
- # their creation (modification) time. There are probably new files by
- # that time.
- #
-
- <IfModule mod_expires.c>
- ExpiresActive On
- ExpiresDefault M310
- </IfModule>
-
-</Directory>
-
-# Enables fastcgi for munin-cgi-html if present
-#<Location /munin-cgi>
-# <IfModule mod_fastcgi.c>
-# SetHandler fastcgi-script
-# </IfModule>
-#</Location>
-
-#<Location /munin-cgi/static>
-# SetHandler None
-#</Location>
-
-# Enables fastcgi for munin-cgi-graph if present
-ScriptAlias /munin-cgi/munin-cgi-graph /usr/lib/munin/cgi/munin-cgi-graph
-<Location /munin-cgi/munin-cgi-graph>
- Order allow,deny
- Allow from localhost 127.0.0.0/8 ::1
- # AuthUserFile /etc/munin/munin-htpasswd
- # AuthName "Munin"
- # AuthType Basic
- # require valid-user
- <IfModule mod_fastcgi.c>
- SetHandler fastcgi-script
- </IfModule>
-</Location>
-
-ScriptAlias /munin-cgi/munin-cgi-html /usr/lib/munin/cgi/munin-cgi-html
-<Location /munin-cgi/munin-cgi-html>
- Order allow,deny
- Allow from localhost 127.0.0.0/8 ::1
- # AuthUserFile /etc/munin/munin-htpasswd
- # AuthName "Munin"
- # AuthType Basic
- # require valid-user
- <IfModule mod_fastcgi.c>
- SetHandler fastcgi-script
- </IfModule>
-</Location>
-