From: Tom Hughes Date: Mon, 13 Jul 2015 21:48:53 +0000 (+0100) Subject: Add apache mime type mapping for xz files X-Git-Url: https://git.openstreetmap.org/chef.git/commitdiff_plain/7155c00477d8ea2919730489c4bd354df0751bf1 Add apache mime type mapping for xz files Closes #16 --- diff --git a/cookbooks/apache/templates/default/httpd.conf.erb b/cookbooks/apache/templates/default/httpd.conf.erb index 73e59c725..f2060f45e 100644 --- a/cookbooks/apache/templates/default/httpd.conf.erb +++ b/cookbooks/apache/templates/default/httpd.conf.erb @@ -49,4 +49,8 @@ MaxRequestsPerChild <%= node[:apache][:event][:max_requests_per_child] %> # Default to UTF-8 AddDefaultCharset utf-8 +# Add extra mime types +AddType application/x-xz .xz + +# Configure logging BufferedLogs <%= node[:apache][:buffered_logs] ? "On" : "Off" %>