From cdbbda53e245621065bf142e48737faf88a5fee7 Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Sat, 17 Mar 2012 11:00:17 -0400 Subject: [PATCH] Incremental commit indexing was missing branch field --- docs/01_setup.mkd | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/docs/01_setup.mkd b/docs/01_setup.mkd index 1a3b9a9..1160d8e 100644 --- a/docs/01_setup.mkd +++ b/docs/01_setup.mkd @@ -86,6 +86,7 @@ --useNio Use NIO Connector else use Socket Connector. --httpPort HTTP port for to serve. (port <= 0 will disable this connector) --httpsPort HTTPS port to serve. (port <= 0 will disable this connector) + --ajpPort AJP port to serve. (port <= 0 will disable this connector) --storePassword Password for SSL (https) keystore. --shutdownPort Port for Shutdown Monitor to listen on. (port <= 0 will disable this monitor) --tempFolder Folder for server to extract built-in webapp @@ -93,6 +94,14 @@ **Example** java -jar gitblit.jar --userService c:\myrealm.config --storePassword something + +#### Overriding Gitblit GO's Log4j Configuration + +You can override Gitblit GO's default Log4j configuration with a command-line parameter to the JVM. + + java -Dlog4j.configuration=file:///home/james/log4j.properties -jar gitblit.jar <optional_gitblit_args> + +For reference, here is [Gitblit's default Log4j configuration](https://github.com/gitblit/gitblit/blob/master/src/log4j.properties). It includes some file appenders that are disabled by default. ## Running Gitblit behind Apache -- Gitblit v1.9.1