aboutsummaryrefslogtreecommitdiffstats
path: root/testing/artifactory-oss/artifactory.confd
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2016-09-15 19:04:52 +0200
committerJakub Jirutka <jakub@jirutka.cz>2016-09-15 19:06:40 +0200
commitf9d670f037c4312e870e923a7d8d3fc7ef60f63e (patch)
tree5cf21f3f1d66b066915b4ef4d62d865d66365b45 /testing/artifactory-oss/artifactory.confd
parentcf9d16f4f5df593f57bf7b0811741b59166fd211 (diff)
downloadaports-f9d670f037c4312e870e923a7d8d3fc7ef60f63e.tar.bz2
aports-f9d670f037c4312e870e923a7d8d3fc7ef60f63e.tar.xz
testing/artifactory-oss: new aport
https://www.jfrog.com/open-source/ Open source Maven repository manager
Diffstat (limited to 'testing/artifactory-oss/artifactory.confd')
-rw-r--r--testing/artifactory-oss/artifactory.confd44
1 files changed, 44 insertions, 0 deletions
diff --git a/testing/artifactory-oss/artifactory.confd b/testing/artifactory-oss/artifactory.confd
new file mode 100644
index 0000000000..8df0d665bd
--- /dev/null
+++ b/testing/artifactory-oss/artifactory.confd
@@ -0,0 +1,44 @@
+# User to run the application.
+user="artifact"
+
+# Path of the WAR file, the web app directory, or the context xml file to run.
+webapp_path="/usr/share/java/artifactory.war"
+
+# 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/artifactory/server.log"
+
+# Path of the access log file.
+# Use empty value to disable access log.
+#server_access_log="/var/log/artifactory/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="/usr/share/java/postgresql-jdbc.jar"
+
+# 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="
+ artifactory.home=/var/lib/artifactory
+ artifactory.logs=/var/log/artifactory"
+
+# Initial and maximum size of the heap (in megabytes).
+# Note: This sets parameters -Xms and -Xmx.
+java_heap_size="512"
+
+# Additional options to pass to the JVM.
+java_opts="-XX:+UseG1GC -XX:MaxGCPauseMillis=80 -Xss256k"
+
+# You may use rc_need, rc_use, rc_after, rc_before and rc_provide variables to
+# influence the dependencies of the service.
+#rc_use="postgresql"