Vagrant: forward port 8443 -> 443

refs #11238
This commit is contained in:
Alexander A. Klimov 2016-02-26 14:01:15 +01:00
parent d66198e555
commit ce4f844e9f
1 changed files with 2 additions and 0 deletions

2
Vagrantfile vendored
View File

@ -18,6 +18,8 @@ end
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.network "forwarded_port", guest: 80, host: 8080,
auto_correct: true
config.vm.network "forwarded_port", guest: 443, host: 8443,
auto_correct: true
config.vm.provision :shell, :path => ".puppet/manifests/puppet.sh"