Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Override port 80 mappings for additional providers. Address #76. #77

Merged
merged 1 commit into from
Oct 14, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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