I'll preface this with the fact that I'm learning; I believe I'm missing something fundamental.
I'm running Consul and Fabio on a Vagrant environment. A Consul server and a Fabio instance are running on one VM, and a Consul agent and my small web server is hosted on another VM. I have forwarded the appropriate ports to view both the Consul and Fabio UIs, and I've also set up health checks and routing for the web server:


The health check that is registered on the consul agent:
{"service":
{"name": "web",
"port": 8091,
"check": {
"args": ["curl", "localhost"],
"interval": "5s"
},
"tags": ["urlprefix-/"]
}
}
And finally the web-server when directly entering the port information:

Fabio displays the correct routing information in its UI, but going to localhost:9999/ sends me to a completely blank webpage, not Firefox's "Unable to connect" page or the python SimpleHTTPServer that is running at the correctly routed port.
The Fabio instance that is running is not using any config or properties file, it's a fresh install with no config.
Is there something very basic that I'm missing here?
I'll preface this with the fact that I'm learning; I believe I'm missing something fundamental.
I'm running Consul and Fabio on a Vagrant environment. A Consul server and a Fabio instance are running on one VM, and a Consul agent and my small web server is hosted on another VM. I have forwarded the appropriate ports to view both the Consul and Fabio UIs, and I've also set up health checks and routing for the web server:
The health check that is registered on the consul agent:
And finally the web-server when directly entering the port information:

Fabio displays the correct routing information in its UI, but going to localhost:9999/ sends me to a completely blank webpage, not Firefox's "Unable to connect" page or the python SimpleHTTPServer that is running at the correctly routed port.
The Fabio instance that is running is not using any config or properties file, it's a fresh install with no config.
Is there something very basic that I'm missing here?