blob: 43c75e0ba18b0e37e8b6d5b550acf8956828d433 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#Configuration options for jetty server
#JETTY_HOST=localhost
#JETTY_PORT=8080
# port to listen on to stop the server
#STOP_PORT=8079
# "password" used on the stop port to verify that the server should be stopped
STOP_KEY=secret
# Set this value to 1 and configure the jetty-setuid.xml to have the server run as an unprivilaged user
#USE_SETUID=1
# Set this value to 1 to use ipv6
#USE_IPV6=1
# Use the SSL config jetty-ssl.xml
#USE_SSL=1
# Set this to a space delimited list of extra conf files you want loaded
# The files are relative to ${JETTY_HOME} so
# ex. JETTY_CONF="etc/jetty-ajp.xml etc/jetty-logging.xml"
#JETTY_CONF=""
|