Last active
October 16, 2019 06:34
-
-
Save falexandrou/8965063 to your computer and use it in GitHub Desktop.
Turn Sendfile to "off" for vagrant boxes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
Thanks a lot 👍
Great!
Thank you!
If sendfile is on, it may causes css or js files cached. I had encountered a problem that even thought I disable cache on chrome, css files were still cached. Turn sendfile to "off" solves this problem.
I think there may be a continuing error with this. I'm using Ubuntu 14.04, Vagrant 1.9.7 and VirtualBox 5.1.2.6, and no amount of setting sendfile off
in nginx has any effect
This helped me get stuff working with Docker Toolbox - thanks a ton!
Great.
Thanks you
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you mate. This fix a issue with css file.