Skip to content

Instantly share code, notes, and snippets.

@lucasmcastro
Created January 9, 2014 19:17
Show Gist options
  • Save lucasmcastro/8340165 to your computer and use it in GitHub Desktop.
Save lucasmcastro/8340165 to your computer and use it in GitHub Desktop.
# -*- mode: ruby -*-
# vi: set ft=ruby :
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "debsqueeze64"
config.vm.network :forwarded_port, guest: 8080, host: 3333
config.vm.network :public_network, :bridge => 'en0: Wi-Fi (AirPort)'
config.vm.network :private_network, ip: "192.168.50.10"
config.ssh.forward_agent = true
config.vm.synced_folder ".", "/var/sites/evolux", nfs: true
config.vm.synced_folder "../evolux-backend", "/var/sites/evolux-backend", nfs: true
config.vm.provider :virtualbox do |vb|
vb.gui = true
vb.customize ["modifyvm", :id, "--memory", "1024"]
end
end
~
~
~
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment