Hi, I recently updated to the latest version of Vagrant (1.8.1) and for some reasons it is now _very_ slow to upload files via http.
I use NFS and I can successfully copy huge files between shared mounts at a decent speed, but port 80 is really really slow. I tried different uploaders, so it's not something with the code. do you have any idea of what it could be? VAGRANTFILE_API_VERSION = "2" > > Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| >> > config.vm.hostname = "poorthing" >> > config.vm.synced_folder ".", "/localhost", type:"nfs", :mount_options => >> ['nolock,vers=3,udp,noatime'] > > config.vm.network "forwarded_port", guest: 80, host: 8080 > > config.vm.network "forwarded_port", guest: 15672, host: 15672 > > # Required for NFS to work, pick any local IP > > config.vm.network "private_network", type: "dhcp" > > end >> > thank you -- This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list. GitHub Issues: https://github.com/mitchellh/vagrant/issues IRC: #vagrant on Freenode --- You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/13f3833c-5c5d-49ff-b1b4-784aa0b6b681%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
