로딩
티스토리 데이터 처리 중입니다.

Vagrant port forwarding

 Vagrant port forwarding

The forwarded port configuration expects two parameters, the port on the guest and the port on the host. Example:Vagrant.configure("2") do |config| config.vm.network "forwarded_port", guest: 80, host: 8080 end This will allow accessing port 80 on the guest via port 8080 on the host.For most providers, forwarded ports by default bind to all interfaces.

This means that other devices on your networ.....