Skip to content

Instantly share code, notes, and snippets.

@Nav-Appaiya
Created March 26, 2015 01:07
Show Gist options
  • Save Nav-Appaiya/4077d3e6153f70fdbaea to your computer and use it in GitHub Desktop.
Save Nav-Appaiya/4077d3e6153f70fdbaea to your computer and use it in GitHub Desktop.
Use nsf for better vagrant performance in windows
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "scotch/box"
config.vm.network "private_network", ip: "192.168.33.10"
config.vm.hostname = "scotchbox"
config.vm.synced_folder ".", "/var/www/public", nfs: true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment