| | |
| | | #
|
| | | # Gitblit Settings
|
| | | #
|
| | |
|
| | | # This settings file supports parameterization from the command-line for the
|
| | | # following command-line parameters:
|
| | | #
|
| | | # --baseFolder ${baseFolder} SINCE 1.2.1
|
| | | #
|
| | | # Settings that support ${baseFolder} parameter substitution are indicated with the
|
| | | # BASEFOLDER attribute. If the --baseFolder argument is unspecified, ${baseFolder}
|
| | | # and it's trailing / will be discarded from the setting value leaving a relative
|
| | | # path that is equivalent to pre-1.2.1 releases.
|
| | | #
|
| | | # e.g. "${baseFolder}/git" becomes "git", if --baseFolder is unspecified |
| | | #
|
| | | # Git Servlet Settings
|
| | | #
|
| | |
|
| | |
| | | #
|
| | | # SINCE 0.5.0
|
| | | # RESTART REQUIRED
|
| | | git.repositoriesFolder = git
|
| | | # BASEFOLDER
|
| | | git.repositoriesFolder = ${baseFolder}/git
|
| | |
|
| | | # Build the available repository list at startup and cache this list for reuse.
|
| | | # This reduces disk io when presenting the repositories page, responding to rpcs,
|
| | |
| | | #
|
| | | # RESTART REQUIRED
|
| | | # SINCE 0.8.0
|
| | | groovy.scriptsFolder = groovy
|
| | | # BASEFOLDER
|
| | | groovy.scriptsFolder = ${baseFolder}/groovy
|
| | |
|
| | | # Specify the directory Grape uses for downloading libraries.
|
| | | # http://groovy.codehaus.org/Grape
|
| | | #
|
| | | # RESTART REQUIRED
|
| | | # SINCE 1.0.0
|
| | | groovy.grapeFolder = groovy/grape
|
| | | # BASEFOLDER
|
| | | groovy.grapeFolder = ${baseFolder}/groovy/grape
|
| | |
|
| | | # Scripts to execute on Pre-Receive.
|
| | | #
|
| | |
| | | # RESTART REQUIRED
|
| | | web.authenticateViewPages = false
|
| | |
|
| | | # if web.authenticateViewPages=true you may optionally require a client-side
|
| | | # basic authentication prompt instead of the standard form-based login. |
| | | #
|
| | | # SINCE 1.3.0
|
| | | web.enforceHttpBasicAuthentication = false
|
| | |
|
| | | # Require admin authentication for the admin functions and pages
|
| | | #
|
| | | # SINCE 0.5.0
|
| | |
| | | # Config file for storing project metadata
|
| | | #
|
| | | # SINCE 1.2.0
|
| | | web.projectsFile = projects.conf
|
| | | # BASEFOLDER
|
| | | web.projectsFile = ${baseFolder}/projects.conf
|
| | |
|
| | | # Either the full path to a user config file (users.conf)
|
| | | # OR the full path to a simple user properties file (users.properties)
|
| | |
| | | #
|
| | | # SINCE 0.5.0
|
| | | # RESTART REQUIRED
|
| | | realm.userService = users.conf
|
| | | # BASEFOLDER
|
| | | realm.userService = ${baseFolder}/users.conf
|
| | |
|
| | | # How to store passwords.
|
| | | # Valid values are plain, md5, or combined-md5. md5 is the hash of password.
|
| | |
| | | # http://googlewebmastercentral.blogspot.com/2008/06/improving-on-robots-exclusion-protocol.html
|
| | | #
|
| | | # SINCE 1.0.0
|
| | | web.robots.txt = |
| | | # BASEFOLDER
|
| | | web.robots.txt = ${baseFolder}/robots.txt
|
| | |
|
| | | # If true, the web ui layout will respond and adapt to the browser's dimensions.
|
| | | # if false, the web ui will use a 940px fixed-width layout.
|
| | |
| | | # Specifying "gitblit" uses the internal login message.
|
| | | #
|
| | | # SINCE 0.7.0
|
| | | # BASEFOLDER
|
| | | web.loginMessage = gitblit
|
| | |
|
| | | # This is the message displayed above the repositories table.
|
| | |
| | | # Specifying "gitblit" uses the internal welcome message.
|
| | | #
|
| | | # SINCE 0.5.0
|
| | | # BASEFOLDER
|
| | | web.repositoriesMessage = gitblit
|
| | |
|
| | | # Ordered list of charsets/encodings to use when trying to display a blob.
|
| | |
| | | # Use forward slashes even on Windows!!
|
| | | #
|
| | | # SINCE 0.6.0
|
| | | federation.proposalsFolder = proposals
|
| | | # BASEFOLDER
|
| | | federation.proposalsFolder = ${baseFolder}/proposals
|
| | |
|
| | | # The default pull frequency if frequency is unspecified on a registration
|
| | | #
|
| | |
| | | #
|
| | | # SINCE 1.0.0
|
| | | # RESTART REQUIRED
|
| | | realm.ldap.backingUserService = users.conf
|
| | | # BASEFOLDER
|
| | | realm.ldap.backingUserService = ${baseFolder}/users.conf
|
| | |
|
| | | # Delegate team membership control to LDAP.
|
| | | #
|
| | |
| | | # SINCE 1.0.0
|
| | | realm.ldap.email = email
|
| | |
|
| | | # Defines the cache period to be used when caching LDAP queries. This is currently
|
| | | # only used for LDAP user synchronization.
|
| | | #
|
| | | # Must be of the form '<long> <TimeUnit>' where <TimeUnit> is one of 'MILLISECONDS', 'SECONDS', 'MINUTES', 'HOURS', 'DAYS' |
| | | # default: 2 MINUTES
|
| | | #
|
| | | # RESTART REQUIRED
|
| | | realm.ldap.ldapCachePeriod = 2 MINUTES
|
| | |
|
| | | # Defines whether to synchronize all LDAP users into the backing user service
|
| | | #
|
| | | # Valid values: true, false
|
| | | # If left blank, false is assumed
|
| | | realm.ldap.synchronizeUsers.enable = false
|
| | |
|
| | | # Defines whether to delete non-existent LDAP users from the backing user service
|
| | | # during synchronization. depends on realm.ldap.synchronizeUsers.enable = true
|
| | | #
|
| | | # Valid values: true, false
|
| | | # If left blank, true is assumed
|
| | | realm.ldap.synchronizeUsers.removeDeleted = true
|
| | |
|
| | | # Attribute on the USER record that indicate their username to be used in gitblit
|
| | | # when synchronizing users from LDAP
|
| | | # if blank, Gitblit will use uid
|
| | | # For MS Active Directory this may be sAMAccountName
|
| | | realm.ldap.uid = uid
|
| | |
|
| | | # The RedmineUserService must be backed by another user service for standard user
|
| | | # and team management.
|
| | | # default: users.conf
|
| | | #
|
| | | # RESTART REQUIRED
|
| | | realm.redmine.backingUserService = users.conf
|
| | | # BASEFOLDER
|
| | | realm.redmine.backingUserService = ${baseFolder}/users.conf
|
| | |
|
| | | # URL of the Redmine.
|
| | | realm.redmine.url = http://example.com/redmine
|
| | |
| | | #
|
| | | # SINCE 0.5.0
|
| | | # RESTART REQUIRED
|
| | | server.tempFolder = temp
|
| | | # BASEFOLDER
|
| | | server.tempFolder = ${baseFolder}/temp
|
| | |
|
| | | # Use Jetty NIO connectors. If false, Jetty Socket connectors will be used.
|
| | | #
|