Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

pirms 11 gadiem
pirms 11 gadiem
pirms 11 gadiem
pirms 10 gadiem
pirms 11 gadiem
pirms 10 gadiem
pirms 11 gadiem
pirms 10 gadiem
pirms 11 gadiem
pirms 10 gadiem
pirms 10 gadiem
1234567891011121314151617181920212223242526272829303132333435363738
  1. ## Gitblit WAR Installation & Setup
  2. 1. Download Gitblit WAR [${project.releaseVersion}](%GCURL%gitblit-${project.releaseVersion}.war) to the webapps folder of your servlet container.
  3. 2. You may have to manually extract the WAR (zip file) to a folder within your webapps folder.
  4. 3. By default, the Gitblit webapp is configured through `WEB-INF/data/gitblit.properties`.
  5. Open `WEB-INF/data/gitblit.properties` in your favorite text editor and make sure to review and set:
  6. - *git.packedGitLimit* (set larger than the size of your largest repository)
  7. 4. You may have to restart your servlet container.
  8. 5. Open your browser to <http://localhost/gitblit> or whatever the url should be.
  9. 6. Enter the default administrator credentials: **admin / admin** and click the *Login* button
  10. **NOTE:** Make sure to change the administrator username and/or password!!
  11. ### WAR Data Location
  12. 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.
  13. Choose a location that is writeable by your servlet container!
  14. 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.
  15. #### Specifying baseFolder via GITBLIT_HOME
  16. You can specify `GITBLIT_HOME` either as an environment variable or as a `-DGITBLIT_HOME` JVM system property.
  17. #### Specifying baseFolder via web.xml
  18. 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.
  19. #### Specifying baseFolder via JNDI
  20. 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.
  21. 1. Open TOMCAT_HOME/conf/context.xml
  22. 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>
  23. ### Including Other Properties
  24. SINCE 1.7.0
  25. Gitblit supports loading it's settings from multiple properties files. You can achieve this using the `include=filename` key. This setting supports loading multiple files using a *comma* as the delimiter. They are processed in the order defined and they may be nested (i.e. your included properties may include properties, etc, etc).