Hi,
Can you share your command to start jboss?
Seems to me that you bind jboss only to localhost when starting.
I use this command (with nohup.. in a shell script) to start my instance. This binds jboss to all interfaces (0.0.0.0)
./standalone.sh -b 0.0.0.0 -Djboss.bind.address.management=0.0.0.0 -Dorg.apache.xml.dtm.DTMManager="org.apache.xml.dtm.ref.DTMManagerDefault"
There should be a entry in your jboss server.log like..
[0m10:49:19,606 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) WFLYUT0006: Undertow HTTPS listener https listening on
0.0.0.0:80[0m10:49:19,606 INFO [org.wildfly.extension.undertow] (MSC service thread 1-2) WFLYUT0006: Undertow HTTPS listener https listening on
0.0.0.0:443
Another option is that you can check with netstat for the open socket when started, should be something like:
netstat -anp | grep 80
...
netstat -anp | grep 443
...
hope this helps a bit.
kind regards,
Niko