Skip to content

Instantly share code, notes, and snippets.

@falexandrou
Last active October 16, 2019 06:34
Show Gist options
  • Save falexandrou/8965063 to your computer and use it in GitHub Desktop.
Save falexandrou/8965063 to your computer and use it in GitHub Desktop.
Turn Sendfile to "off" for vagrant boxes
# A VirtualBox bug forces vagrant to serve
# corrupt files via Apache or nginx
# The solution to that would be to turn off
# the SendFile option in apache or nginx
#
# If you use apache as your main web server
# add this directive in your httpd.conf (or apache.conf)
# configuration file name may vary in various systems
#
EnableSendfile off
# If you use nginx as your main web server
# add this directive in your nginx.conf
sendfile off
@zbennett10
Copy link

This helped me get stuff working with Docker Toolbox - thanks a ton!

@junibrosas
Copy link

Great.

Copy link

ghost commented Aug 30, 2018

Thanks you

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment