been using vagrant for a second, but I found a really wierd little quirk. not sure what is going on and hope someone can help
running bento/centos-68, using the standard rsync file config.vm.synced_folder ".", "/var/www/html", :mount_options => ["dmode=777", "fmode=666"]
when i change a file on my host machine, i can see the change on the virtual machine. good.
but when I pull the file from my browser the file isn't changed
I clear cache and even restart apache. still no change
but if i reload vagrant. it changes
VagrantFile
Vagrant.configure("2") do |config|
config.vm.box = "bento/centos-6.8"
config.vm.network "private_network", ip: "192.168.33.10"
config.vm.hostname = "ladera"
config.vm.synced_folder ".", "/var/www/html", :mount_options => ["dmode=777", "fmode=666"]
config.vm.provision "shell", path: "provisions/php-web-server.sh"
end