Skip to content
Snippets Groups Projects
Commit 1b537b1d authored by Fabrice Gangler's avatar Fabrice Gangler :art:
Browse files

feat: allowed host to communicate with database port

parent f9365372
No related branches found
No related tags found
Loading
...@@ -20,7 +20,7 @@ Vagrant.configure("2") do |config| ...@@ -20,7 +20,7 @@ Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/jammy64" # Ubuntu 22.04 config.vm.box = "ubuntu/jammy64" # Ubuntu 22.04
config.vm.hostname = "pki.example.org" config.vm.hostname = "pki.example.org"
config.vm.network "forwarded_port", id: 'CfsslApi', guest: 8888, host: host_cfssl_port, auto_correct: true, host_ip: host_cfssl_ip config.vm.network "forwarded_port", id: 'CfsslApi', guest: 8888, host: host_cfssl_port, auto_correct: true, host_ip: host_cfssl_ip
# config.vm.network "forwarded_port", id: 'PostgreSQL', guest: 5432, host: 5432, auto_correct: true, host_ip: "127.0.0.1" config.vm.network "forwarded_port", id: 'PostgreSQL', guest: 5432, host: 5432, auto_correct: true, host_ip: host_cfssl_ip
config.vm.provider "virtualbox" do |vb| config.vm.provider "virtualbox" do |vb|
vb.name = "DEMO_CFSSL" vb.name = "DEMO_CFSSL"
# vb.memory = "4096" # vb.memory = "4096"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment