| | |
| | | # Git Servlet Settings
|
| | | #
|
| | |
|
| | | # Allow push/pull over http/https with JGit servlet
|
| | | # Changing this value requires a server restart.
|
| | | # Allow push/pull over http/https with JGit servlet.
|
| | | git.enableGitServlet = true
|
| | |
|
| | | # Base folder for repositories
|
| | |
| | | # e.g. c:/gitrepos
|
| | | git.repositoriesFolder = git
|
| | |
|
| | | # Export all repositories
|
| | | # Changing this value requires a server restart.
|
| | | # if false, each exported repository must have a .git/git-daemon-export-ok file
|
| | | git.exportAll = true
|
| | |
|
| | | # Search repositories folder for nested repositories
|
| | | # Search the repositories folder subfolders for other repositories.
|
| | | # Repositories MAY NOT be nested (i.e. one repository within another)
|
| | | # but they may be grouped together in subfolders.
|
| | | # e.g. c:/gitrepos/libraries/mylibrary.git
|
| | | git.nestedRepositories = true
|
| | | # c:/gitrepos/libraries/myotherlibrary.git
|
| | | git.searchRepositoriesSubfolders = true
|
| | |
|
| | | #
|
| | | # Authentication Settings
|
| | |
| | | # Changing this value requires a server restart.
|
| | | web.authenticateAdminPages = true
|
| | |
|
| | | # Simple user realm file to authenticate users
|
| | | # Either a simple user realm file to authenticate users
|
| | | # OR a fully qualified class name that implements the ILoginService interface.
|
| | | # Any custom implementation must have a public default constructor.
|
| | | # Changing this value requires a server restart.
|
| | | realm.realmFile = users.properties
|
| | |
|
| | |
| | | # Allow dyanamic zip downloads.
|
| | | web.allowZipDownloads = true
|
| | |
|
| | | # Default number of entries to include in RSS/Atom Syndication links
|
| | | web.syndicationEntries = 25
|
| | |
|
| | | # This is the message display above the repositories table.
|
| | | # This can point to a file with Markdown content.
|
| | | # Specifying "gitblit" uses the internal welcome message.
|
| | |
| | | # http://download.oracle.com/javase/6/docs/api/java/text/SimpleDateFormat.html
|
| | | web.datestampShortFormat = yyyy-MM-dd
|
| | | web.datetimestampLongFormat = EEEE, MMMM d, yyyy h:mm a z
|
| | |
|
| | | # Mount parameters
|
| | | # true: http://localhost/commit/myrepo/abcdef
|
| | | # false: http://localhost/commit/?r=myrepo&h=abcdef
|
| | | # Changing this value requires a server restart.
|
| | | web.mountParameters = true
|
| | |
|
| | | # Show other URLs on the summary page for accessing your git repositories
|
| | | # Use spaces to separate urls. {0} is the token for the repository name.
|
| | |
| | | # Example global regex substitutions
|
| | | # Use !!! to separate the search pattern and the replace pattern
|
| | | # searchpattern!!!replacepattern
|
| | | #regex.global.bug = \\b(Bug:)(\\s*[#]?|-){0,1}(\\d+)\\b!!!<a href="http://somehost/bug/$3">Bug-Id: $3</a>
|
| | | #regex.global.changeid = \\b(Change-Id:\\s*)([A-Za-z0-9]*)\\b!!!<a href="http://somehost/changeid/$2">Change-Id: $2</a>
|
| | | regex.global.bug = \\b(Bug:)(\\s*[#]?|-){0,1}(\\d+)\\b!!!<a href="http://somehost/bug/$3">Bug-Id: $3</a>
|
| | | regex.global.changeid = \\b(Change-Id:\\s*)([A-Za-z0-9]*)\\b!!!<a href="http://somehost/changeid/$2">Change-Id: $2</a>
|
| | |
|
| | | # Example per-repository regex substitutions overrides global
|
| | | #regex.myrepository.bug = \\b(Bug:)(\\s*[#]?|-){0,1}(\\d+)\\b!!!<a href="http://elsewhere/bug/$3">Bug-Id: $3</a>
|
| | | regex.myrepository.bug = \\b(Bug:)(\\s*[#]?|-){0,1}(\\d+)\\b!!!<a href="http://elsewhere/bug/$3">Bug-Id: $3</a>
|
| | |
|
| | | #
|
| | | # Server Settings
|
| | |
| | |
|
| | | # The temporary folder to decompress the gitblit webapp.
|
| | | server.tempFolder = temp
|
| | |
|
| | | # The common log4j logging pattern
|
| | | # http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/PatternLayout.html
|
| | | server.log4jPattern = %-5p %d{MM-dd HH:mm:ss.SSS} %-20.20c{1} %m%n
|
| | |
|
| | | # Alternatively, you may specify a logging pattern for your OS.
|
| | | # If the os pattern is blank, the common pattern is used.
|
| | |
|
| | | # This windows pattern fits (mostly) within the fixed bounds of a command prompt.
|
| | | server.log4jPattern.windows = %-5p %m%n
|
| | |
|
| | | server.log4jPattern.linux =
|
| | |
|
| | |
|
| | | #
|
| | | # Jetty Settings
|