mirror of https://github.com/MISP/misp-vagrant
Expose port 6666 of the VM (to get the list of modules in JSON)
parent
fae93e5368
commit
890bf8eb30
|
@ -22,7 +22,8 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) 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:8080" will access port 80 on the guest machine.
|
||||
config.vm.network "forwarded_port", guest: 80, host: 5000
|
||||
config.vm.network :forwarded_port, guest: 80, host: 5000
|
||||
config.vm.network :forwarded_port, guest: 6666, host: 6666
|
||||
|
||||
# Create a private network, which allows host-only access to the machine
|
||||
# using a specific IP.
|
||||
|
|
Loading…
Reference in New Issue