aboutsummaryrefslogtreecommitdiffstats
path: root/community/jetty-runner/jetty-runner.confd
blob: 10df14f29047588e740b932619eceb5bab70979d (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# YOU SHOULD NOT MODIFY THIS FILE! CREATE A COPY NAMED AFTER THE APPLICATION
# YOU WANT TO RUN AND MODIFY THAT INSTEAD (and remove this notice).

# User to run the application.
user="nobody"

# Path of the WAR file, the web app directory, or the context xml file to run.
webapp_path=""

# The relative URL root (i.e. context path) of the application.
#context_root=""

# The port to listen on for HTTP connections (or 0 for a randomly allocated port).
server_port="8080"

# The name or IP of the interface to listen on (default is all interfaces).
#server_bind_address=""

# Path of the log file to catch stdout/stderr of the server process.
# Use empty value to disable stdout/sderr logging.
#server_out_log="/var/log/jetty/server.log"

# Path of the access log file.
# Use empty value to disable access log.
#server_access_log="/var/log/jetty/access.log"

# Additional JARs to be added to the classloader.
# It may contain space or colon separated paths of JAR files or directories.
#server_extra_jars=""

# Java system properties to pass to the JVM.
# Define space separated tuples of <name>=<value>; it will be transformed into
# -D<name>=<value> arguments for java.
#java_properties=""

# Initial and maximum size of the heap (in megabytes).
# Note: This sets parameters -Xms and -Xmx.
java_heap_size="128"

# Ratio of old/new generation sizes. The default value is 2 (i.e. max size of
# old will be twice as the max size of young).
# Note: This sets parameter -XX:NewRatio.
java_new_ratio="2"

# Additional options to pass to the JVM.
java_opts="-XX:MaxGCPauseMillis=80"

# You may use rc_need, rc_use, rc_after, rc_before and rc_provide variables to
# influence the dependencies of the service.
#rc_use="nginx postgresql"