aboutsummaryrefslogtreecommitdiffstats
path: root/community/jetty-runner/jetty-runner.confd
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2016-05-01 23:10:52 +0200
committerNatanael Copa <ncopa@alpinelinux.org>2016-05-02 15:56:07 +0200
commit64a99a719f23ef69193eb8e0027c040e5c74d3ee (patch)
tree9d59841b620cf162158019b0a45ab674609c88d0 /community/jetty-runner/jetty-runner.confd
parentc9a5e74bb90bd6ec62bff392863b0a4be3f71294 (diff)
downloadaports-64a99a719f23ef69193eb8e0027c040e5c74d3ee.tar.bz2
aports-64a99a719f23ef69193eb8e0027c040e5c74d3ee.tar.xz
testing/jetty-runner: move to the community repo
Diffstat (limited to 'community/jetty-runner/jetty-runner.confd')
-rw-r--r--community/jetty-runner/jetty-runner.confd50
1 files changed, 50 insertions, 0 deletions
diff --git a/community/jetty-runner/jetty-runner.confd b/community/jetty-runner/jetty-runner.confd
new file mode 100644
index 0000000000..10df14f290
--- /dev/null
+++ b/community/jetty-runner/jetty-runner.confd
@@ -0,0 +1,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"