Skip to content

Instantly share code, notes, and snippets.

@ssmythe
Last active February 2, 2016 21:56
Show Gist options
  • Save ssmythe/0d25ba188ac36f968c98 to your computer and use it in GitHub Desktop.
Save ssmythe/0d25ba188ac36f968c98 to your computer and use it in GitHub Desktop.
Ubuntu1404 Vagrantfile that provisions apache with simple Hello World index.html
# Rename this file to 'Vagrantfile'
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "bento/ubuntu-14.04"
config.vm.network "public_network"
config.vm.hostname = "roadsign"
config.vm.provision "shell", path: "install-base-ubuntu1404.sh"
config.vm.provision "shell", path: "install-apache-ubuntu1404.sh"
config.vm.provider "virtualbox" do |v|
v.cpus = 2
v.memory = 4096
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment