Commit c6f7b839 authored by Karsten Loesing's avatar Karsten Loesing
Browse files

Make Jetty listen host configurable.

The default listen host is still 127.0.0.1, but now it's possible to
configure a different listen host, like 0.0.0.0, which can facilitate
local testing.
parent 45c5285a
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -75,7 +75,9 @@
        <Set name="port">
          <SystemProperty name="exonerator.jetty.port" default="8080" />
        </Set>
        <Set name="host">127.0.0.1</Set>
        <Set name="host">
          <SystemProperty name="exonerator.jetty.host" default="127.0.0.1" />
        </Set>
      </New>
    </Arg>
  </Call>