diff options
Diffstat (limited to 'config/awx-munin-ubuntu.conf')
-rw-r--r-- | config/awx-munin-ubuntu.conf | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/config/awx-munin-ubuntu.conf b/config/awx-munin-ubuntu.conf new file mode 100644 index 0000000000..936eb706ca --- /dev/null +++ b/config/awx-munin-ubuntu.conf @@ -0,0 +1,33 @@ + +Alias /munin /var/cache/munin/www +<Directory /var/cache/munin/www> + Order allow,deny + Allow from all + Options FollowSymLinks + + # 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> |