]> source.dussan.org Git - gitblit.git/commitdiff
Documentation
authorJames Moger <james.moger@gitblit.com>
Thu, 20 Mar 2014 16:26:43 +0000 (12:26 -0400)
committerJames Moger <james.moger@gitblit.com>
Thu, 20 Mar 2014 16:26:43 +0000 (12:26 -0400)
src/site/setup_war.mkd

index 3d28ee67d903225f9f3cbf81f9b66ede9ab8425a..94309b1123327bf1fb03809d2e640cc5b995e5d9 100644 (file)
@@ -12,9 +12,19 @@ Open `WEB-INF/data/gitblit.properties` in your favorite text editor and make sur
     **NOTE:** Make sure to change the administrator username and/or password!! \r
 \r
 ### WAR Data Location\r
-By default, Gitblit WAR stores all data (users, settings, repositories, etc) in `${contextFolder}/WEB-INF/data`.  This is fine for a quick setup, but there are many reasons why you don't want to keep your data within the webapps folder of your servlet container.  You may specify an external location for your data by editing `WEB-INF/web.xml` and manipulating the *baseFolder* context parameter.  Choose a location that is writeable by your servlet container.  Your servlet container may be smart enough to recognize the change and to restart Gitblit.\r
+By default, Gitblit WAR stores all data (users, settings, repositories, etc) in `${contextFolder}/WEB-INF/data`.  This is fine for a quick setup, but there are many reasons why you don't want to keep your data within the webapps folder of your servlet container.  Specifying an alternate *baseFolder* also allows for simple upgrades in the future.\r
 \r
-On the next restart of Gitblit, Gitblit will copy the contents of the `WEB-INF/data` folder to your specified *baseFolder* **IF** the file `${baseFolder}/gitblit.properties` does not already exist.  This allows you to get going with minimal fuss.\r
+Choose a location that is writeable by your servlet container!\r
 \r
-Specifying an alternate *baseFolder* also allows for simpler upgrades in the future.\r
+After you configure baseFolder and restart your container, Gitblit will copy the contents of the `WEB-INF/data` folder to your specified *baseFolder* **IF** the file `${baseFolder}/gitblit.properties` does not already exist.  This allows you to get going with minimal fuss.\r
 \r
+#### Specifying baseFolder through web.xml\r
+\r
+You may specify an external location for your data by directly editing `WEB-INF/web.xml` and manipulating the *baseFolder* env-entry.  Your servlet container may be smart enough to recognize the change and to restart Gitblit.\r
+\r
+#### Specifying baseFolder through JNDI\r
+\r
+This is a better way to configure your *baseFolder* because it survives WAR redeploys or deployments of new versions.  These directions assume you are running Tomcat as your container, other containers may have different ways to specify global JNDI environment entries.\r
+\r
+1. Open TOMCAT_HOME/conf/context.xml\r
+2. Insert an *Environment* node within the *Context* node.<pre>&lt;Environment name="baseFolder" type="java.lang.String" value="c:/projects/git/gitblit/data" override="false" /&gt;</pre>\r