| | |
| | | # RESTART REQUIRED
|
| | | git.repositoriesFolder = 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,
|
| | | # etc, but it means that Gitblit will not automatically identify repositories
|
| | | # added or deleted by external tools.
|
| | | #
|
| | | # For this case you can use curl, wget, etc to issue an rpc request to clear the
|
| | | # cache (e.g. https://localhost/rpc?req=CLEAR_REPOSITORY_CACHE)
|
| | | #
|
| | | # SINCE 1.1.0
|
| | | git.cacheRepositoryList = true
|
| | |
|
| | | # 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.
|
| | |
| | | #
|
| | | # SINCE 0.5.0
|
| | | git.searchRepositoriesSubfolders = true
|
| | |
|
| | | # Maximum number of folders to recurse into when searching for repositories.
|
| | | # The default value, -1, disables depth limits.
|
| | | #
|
| | | # SINCE 1.1.0
|
| | | git.searchRecursionDepth = -1
|
| | |
|
| | | # List of regex exclusion patterns to match against folders found in
|
| | | # *git.repositoriesFolder*.
|
| | | # Use forward slashes even on Windows!!
|
| | | # e.g. test/jgit\.git
|
| | | #
|
| | | # SPACE-DELIMITED
|
| | | # CASE-SENSITIVE
|
| | | # SINCE 1.1.0
|
| | | git.searchExclusions =
|
| | |
|
| | | # List of regex url patterns for extracting a repository name when locating
|
| | | # submodules.
|
| | | # e.g. git.submoduleUrlPatterns = .*?://github.com/(.*) will extract
|
| | | # *gitblit/gitblit.git* from *git://github.com/gitblit/gitblit.git*
|
| | | # If no matches are found then the submodule repository name is assumed to be
|
| | | # whatever trails the last / character. (e.g. gitblit.git).
|
| | | #
|
| | | # SPACE-DELIMITED
|
| | | # CASE-SENSITIVE
|
| | | # SINCE 1.1.0
|
| | | git.submoduleUrlPatterns = .*?://github.com/(.*)
|
| | |
|
| | | # Allow push/pull over http/https with JGit servlet.
|
| | | # If you do NOT want to allow Git clients to clone/push to Gitblit set this
|
| | |
| | | # SINCE 1.0.0
|
| | | git.defaultAccessRestriction = NONE
|
| | |
|
| | | # The default authorization control for new repositories.
|
| | | # Valid values are AUTHENTICATED and NAMED
|
| | | # AUTHENTICATED = any authenticated user is granted restricted access
|
| | | # NAMED = only named users/teams are granted restricted access
|
| | | #
|
| | | # SINCE 1.1.0
|
| | | git.defaultAuthorizationControl = NAMED
|
| | |
|
| | | # Number of bytes of a pack file to load into memory in a single read operation.
|
| | | # This is the "page size" of the JGit buffer cache, used for all pack access
|
| | | # operations. All disk IO occurs as single window reads. Setting this too large
|
| | |
| | | # Default on JGit is 8 KiB on all platforms.
|
| | | #
|
| | | # Common unit suffixes of k, m, or g are supported.
|
| | | # Documentation courtesy of the Gerrit project.
|
| | | #
|
| | | # SINCE 1.0.0
|
| | | # RESTART REQUIRED
|
| | |
| | | # Default on JGit is 10 MiB on all platforms.
|
| | | #
|
| | | # Common unit suffixes of k, m, or g are supported.
|
| | | # Documentation courtesy of the Gerrit project.
|
| | | #
|
| | | # SINCE 1.0.0
|
| | | # RESTART REQUIRED
|
| | |
| | | # this value.
|
| | | #
|
| | | # Common unit suffixes of k, m, or g are supported.
|
| | | # Documentation courtesy of the Gerrit project.
|
| | | #
|
| | | # SINCE 1.0.0
|
| | | # RESTART REQUIRED
|
| | |
| | | # available for network sockets and other repository data manipulation.
|
| | | #
|
| | | # Default on JGit is 128 file descriptors on all platforms.
|
| | | # Documentation courtesy of the Gerrit project.
|
| | | #
|
| | | # SINCE 1.0.0
|
| | | # RESTART REQUIRED
|
| | |
| | | # Default is 50 MiB on all platforms.
|
| | | #
|
| | | # Common unit suffixes of k, m, or g are supported.
|
| | | # Documentation courtesy of the Gerrit project.
|
| | | #
|
| | | # SINCE 1.0.0
|
| | | # RESTART REQUIRED
|
| | |
| | | #
|
| | | # Default on JGit is false. Although potentially slower, it yields much more
|
| | | # predictable behavior.
|
| | | # Documentation courtesy of the Gerrit project.
|
| | | #
|
| | | # SINCE 1.0.0
|
| | | # RESTART REQUIRED
|
| | |
| | | # RESTART REQUIRED
|
| | | # SINCE 0.8.0
|
| | | groovy.scriptsFolder = groovy
|
| | |
|
| | | # Specify the directory Grape uses for downloading libraries.
|
| | | # http://groovy.codehaus.org/Grape
|
| | | #
|
| | | # RESTART REQUIRED
|
| | | # SINCE 1.0.0
|
| | | groovy.grapeFolder = groovy/grape
|
| | |
|
| | | # Scripts to execute on Pre-Receive.
|
| | | #
|
| | |
| | | # SINCE 0.5.0
|
| | | web.allowCookieAuthentication = true
|
| | |
|
| | | # Config file for storing project metadata
|
| | | #
|
| | | # SINCE 1.2.0
|
| | | web.projectsFile = 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)
|
| | | # OR a fully qualified class name that implements the IUserService interface.
|
| | | #
|
| | | # Alternative user services:
|
| | | # com.gitblit.LdapUserService
|
| | | # com.gitblit.RedmineUserService
|
| | | #
|
| | | # Any custom user service implementation must have a public default constructor.
|
| | | #
|
| | |
| | | #
|
| | | # SINCE 0.7.0
|
| | | web.enableRpcAdministration = false
|
| | |
|
| | | # Full path to a configurable robots.txt file. With this file you can control
|
| | | # what parts of your Gitblit server respectable robots are allowed to traverse.
|
| | | # http://googlewebmastercentral.blogspot.com/2008/06/improving-on-robots-exclusion-protocol.html
|
| | | #
|
| | | # SINCE 1.0.0
|
| | | web.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.
|
| | | # http://twitter.github.com/bootstrap/scaffolding.html#responsive
|
| | | #
|
| | | # SINCE 1.0.0
|
| | | web.useResponsiveLayout = true
|
| | |
|
| | | # Allow Gravatar images to be displayed in Gitblit pages.
|
| | | #
|
| | |
| | | #
|
| | | # SINCE 0.5.0
|
| | | web.repositoriesMessage = gitblit
|
| | |
|
| | | # Ordered list of charsets/encodings to use when trying to display a blob.
|
| | | # If empty, UTF-8 and ISO-8859-1 are used. The server's default charset
|
| | | # is always appended to the encoding list. If all encodings fail to cleanly
|
| | | # decode the blob content, UTF-8 will be used with the standard malformed
|
| | | # input/unmappable character replacement strings.
|
| | | # |
| | | # SPACE-DELIMITED
|
| | | # SINCE 1.0.0
|
| | | web.blobEncodings = UTF-8 ISO-8859-1
|
| | |
|
| | | # Manually set the default timezone to be used by Gitblit for display in the
|
| | | # web ui. This value is independent of the JVM timezone. Specifying a blank
|
| | |
| | | # e.g.
|
| | | # web.otherUrls = ssh://localhost/git/{0} git://localhost/git/{0}
|
| | | #
|
| | | # SPACE-DELIMITED
|
| | | # SINCE 0.5.0
|
| | | web.otherUrls =
|
| | |
|
| | |
| | | #
|
| | |
|
| | | # URL of the LDAP server.
|
| | | # To use encrypted transport, use either ldaps:// URL for SSL or ldap+tls:// to
|
| | | # send StartTLS command.
|
| | | #
|
| | | # SINCE 1.0.0
|
| | | realm.ldap.server = ldap://localhost
|
| | |
| | | # SINCE 1.0.0
|
| | | realm.ldap.email = email
|
| | |
|
| | | # 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
|
| | |
|
| | | # URL of the Redmine.
|
| | | realm.redmine.url = http://example.com/redmine
|
| | |
|
| | | #
|
| | | # Server Settings
|
| | | #
|