default-graylog-server 927 B

12345678910111213141516171819202122
  1. # Path to a custom java executable. By default the java executable of the
  2. # bundled JVM is used.
  3. #JAVA=/usr/bin/java
  4. # Default Java options for heap and garbage collection.
  5. GRAYLOG_SERVER_JAVA_OPTS="-Xms1g -Xmx1g -server -XX:+UseG1GC -XX:-OmitStackTraceInFastThrow"
  6. # Avoid endless loop with some TLSv1.3 implementations.
  7. GRAYLOG_SERVER_JAVA_OPTS="$GRAYLOG_SERVER_JAVA_OPTS -Djdk.tls.acknowledgeCloseNotify=true"
  8. # Fix for log4j CVE-2021-44228
  9. GRAYLOG_SERVER_JAVA_OPTS="$GRAYLOG_SERVER_JAVA_OPTS -Dlog4j2.formatMsgNoLookups=true"
  10. # Use custom keystore for self signed certificate
  11. GRAYLOG_SERVER_JAVA_OPTS="$GRAYLOG_SERVER_JAVA_OPTS -Djavax.net.ssl.trustStore=/etc/ssl/certs/java/cacerts"
  12. # Pass some extra args to graylog-server. (i.e. "-d" to enable debug mode)
  13. GRAYLOG_SERVER_ARGS=""
  14. # Program that will be used to wrap the graylog-server command. Useful to
  15. # support programs like authbind.
  16. GRAYLOG_COMMAND_WRAPPER=""