1
0
mirror of https://github.com/djohnlewis/stackdump synced 2024-12-04 23:17:37 +00:00

Changed jetty config so it only listens on localhost.

We don't want public access to it anyway.
This commit is contained in:
Samuel Lai 2011-09-17 19:52:35 +10:00
parent bd6280f6a5
commit 232306d338

View File

@ -71,7 +71,7 @@
<Call name="addConnector">
<Arg>
<New class="org.mortbay.jetty.bio.SocketConnector">
<Set name="host"><SystemProperty name="jetty.host" /></Set>
<Set name="host"><SystemProperty name="jetty.host" default="localhost" /></Set>
<Set name="port"><SystemProperty name="jetty.port" default="8983"/></Set>
<Set name="maxIdleTime">50000</Set>
<Set name="lowResourceMaxIdleTime">1500</Set>