Skip to content
This repository has been archived by the owner on May 13, 2024. It is now read-only.

Commit

Permalink
reverted some accidental changes from my own Vagrantfile, not needed
Browse files Browse the repository at this point in the history
  • Loading branch information
hardyoyo committed Jan 26, 2018
1 parent f432daf commit 7f9932e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -81,16 +81,16 @@ Vagrant.configure("2") do |config|
# Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine. In the example below,
# accessing "localhost:[port]" will access port 8080 on the VM.
#config.vm.network :forwarded_port, guest: 8080, host: CONF['port'],
# auto_correct: true
config.vm.network :forwarded_port, guest: 8080, host: CONF['port'],
auto_correct: true

# Forward PostgreSQL database port (5432) to local machine port (for DB & pgAdmin3 access)
# config.vm.network :forwarded_port, guest: 5432, host: CONF['db_port'],
# auto_correct: true
config.vm.network :forwarded_port, guest: 5432, host: CONF['db_port'],
auto_correct: true

# If a port collision occurs (e.g. port 8080 on local machine is in use),
# then tell Vagrant to use the next available port between 8081 and 8100
# config.vm.usable_port_range = 8081..8100
config.vm.usable_port_range = 8081..8100

# BEGIN Landrush (https://github.com/phinze/landrush) configuration
# This section will only be triggered if you have installed "landrush"
Expand Down

0 comments on commit 7f9932e

Please sign in to comment.