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
@junibrosas
Copy link

Great.

@gabriel-sen
Copy link

Thanks you

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