Created
April 18, 2014 14:08
-
-
Save dcousineau/11046038 to your computer and use it in GitHub Desktop.
Vagrant setup for foundations thumb drive
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
Download Box Here: https://s3.amazonaws.com/dcousineau/vagrant/foundations.v0.box | |
Also On Vagrantcloud: https://vagrantcloud.com/dcousineau/lsp-foundations/version/1 |
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
Vagrant.configure("2") do |config| | |
config.vm.box = "phpbridge" | |
config.vm.box_url = "../foundations.v0.box" | |
config.vm.network :forwarded_port, guest: 8080, host: 8080 | |
config.vm.synced_folder "./", "/var/www" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment