Skip to content

Instantly share code, notes, and snippets.

Created August 11, 2014 19:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/dce3ca1fa3e3c96b6d79 to your computer and use it in GitHub Desktop.
Save anonymous/dce3ca1fa3e3c96b6d79 to your computer and use it in GitHub Desktop.
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# Every Vagrant virtual environment requires a box to build off of.
config.vm.box = "ubuntu/trusty64"
config.vm.box_check_update = false
config.vm.network "forwarded_port", guest: 80, host: 8080
config.vm.synced_folder ".", "/vagrant", owner: "www-data", group: "www-data"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment