From 1999dd1e1a5d8bd00215d9c31d3c850cd14bac58 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Fri, 5 Jul 2013 14:46:42 +0200 Subject: [PATCH] Vagrant: Fix caching issues on vboxsf Control httpd to not use the sendfile support from the kernel to transmit file contents to the client because the sendfile syscall is broken with the VirtualBox file system as of the time of writing. refs #4384 --- .vagrant-puppet/files/etc/httpd/conf.d/icinga2-web.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.vagrant-puppet/files/etc/httpd/conf.d/icinga2-web.conf b/.vagrant-puppet/files/etc/httpd/conf.d/icinga2-web.conf index ff3c96e69..8f700803e 100644 --- a/.vagrant-puppet/files/etc/httpd/conf.d/icinga2-web.conf +++ b/.vagrant-puppet/files/etc/httpd/conf.d/icinga2-web.conf @@ -5,4 +5,6 @@ Order allow,deny Allow from all + + EnableSendfile Off