Skip to content

Commit

Permalink
Merge pull request #77 from ruebot/7.x-2.x
Browse files Browse the repository at this point in the history
Override port 80 mappings for additional providers. Address #76.
  • Loading branch information
whikloj committed Oct 14, 2015
2 parents a5dcc8b + 17a4e16 commit 8a139c7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions install/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
override.vm.box = "dummy"
override.ssh.username = "ubuntu"
override.ssh.private_key_path = ENV['AWS_KEYPATH']
config.vm.network :forwarded_port, guest: 80, host: 80
override.vm.network :forwarded_port, guest: 80, host: 80
end

# This should work fine out of the box if environment variables are declared
Expand All @@ -39,10 +39,10 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
provider.image = 'ubuntu-14-04-x64'
provider.region = 'tor1'
provider.size = '4gb'
config.vm.network :forwarded_port, guest: 80, host: 80
override.vm.network :forwarded_port, guest: 80, host: 80
end

# Every Vagrant virtual environment requires a box to build off of.
# Every Vagrant virtual environment requires a box to build off of.
config.vm.box = "ubuntu/trusty64"

# Setup the shared folder
Expand Down

0 comments on commit 8a139c7

Please sign in to comment.