0

I am working on a project that uses the apache felix webconsole with Jetty. The project uses the OSGi framework and is built using BND tools in eclipse. How can I configure jetty to allow connections from anywhere so I can use the webconsole when it is running remotely.

iain
  • 39
  • 1
  • 9

1 Answers1

1

As far as I know the webconsole is available remotely by default.

If you need a configuration then it will be for felix http:

org.apache.felix.http.jettyEnabled=true

This is what I use. See the felix http service docs for a list of configs.

I think the config property needed is org.apache.felix.http.host but the default seems to be to listen to all interfaces.

Christian Schneider
  • 19,420
  • 2
  • 39
  • 64