Changing port to 1235 to not clash with smtp default port

This commit is contained in:
lubiana 2022-04-25 15:19:41 +02:00 committed by Andre Lubian
parent 00c31259f8
commit d81535c3c0
7 changed files with 7 additions and 7 deletions

2
Vagrantfile vendored
View file

@ -7,7 +7,7 @@ Vagrant.configure("2") do |config|
v.memory = 2048
v.cpus = 4
end
config.vm.network "forwarded_port", guest: 1234, host: 1234
config.vm.network "forwarded_port", guest: 1235, host: 1235
config.vm.network "forwarded_port", guest: 22, host: 2200, id: 'ssh'
config.vm.synced_folder "./app", "/home/vagrant/app/"
config.ssh.username = 'vagrant'