62 lines
2.3 KiB
Plaintext
62 lines
2.3 KiB
Plaintext
|
#
|
||
|
# GITBLIT.PROPERTIES
|
||
|
#
|
||
|
# Define your custom settings in this file and/or include settings defined in
|
||
|
# other properties files.
|
||
|
#
|
||
|
|
||
|
# Include Gitblit's 'defaults.properties' within your configuration.
|
||
|
#
|
||
|
# NOTE: Gitblit will not automatically reload "included" properties. Gitblit
|
||
|
# only watches the 'gitblit.properties' file for modifications.
|
||
|
#
|
||
|
# Paths may be relative to the ${baseFolder} or they may be absolute.
|
||
|
#
|
||
|
# COMMA-DELIMITED
|
||
|
# SINCE 1.7.0
|
||
|
include = {{ gitblit_data_dir }}/defaults.properties
|
||
|
|
||
|
#
|
||
|
# Define your overrides or custom settings below
|
||
|
#
|
||
|
server.httpPort = {{ gitblit_http_port }}
|
||
|
server.httpsPort = {{ gitblit_https_port }}
|
||
|
server.redirectToHttpsPort = {{ gitblit_redirect_to_https }}
|
||
|
server.httpBindInterface = {{ gitblit_http_interface }}
|
||
|
server.httpsBindInterface = {{ gitblit_https_interface }}
|
||
|
server.shutdownPort = {{ gitblit_shutdown_port }}
|
||
|
server.storePassword = {{ gitblit_server_storepassword }}
|
||
|
git.daemonPort = {{ gitblit_git_daemon_port }}
|
||
|
git.daemonBindInterface = {{ gitblit_daemon_interface }}
|
||
|
git.sshPort = {{ gitblit_ssh_port }}
|
||
|
git.sshBindInterface = {{ gitblit_ssh_interface }}
|
||
|
git.requiresClientCertificate = {{ gitblit_require_client_ssl_certs }}
|
||
|
git.acceptedPushTransports = {{ gitblit_git_accepted_push_transport }}
|
||
|
git.defaultAuthorizationControl = {{ gitblit_default_auth_control }}
|
||
|
git.createRepositoriesShared = {{ gitblit_creates_repo_shared }}
|
||
|
git.enableGitServlet = {{ gitblit_enable_git_servlet }}
|
||
|
# NOTE:
|
||
|
# This requires git.enableGitServlet = true AND it requires an authenticated
|
||
|
# git transport connection (http/https) when pushing from a client.
|
||
|
#
|
||
|
# Valid services include:
|
||
|
# com.gitblit.tickets.FileTicketService
|
||
|
# com.gitblit.tickets.BranchTicketService
|
||
|
# com.gitblit.tickets.RedisTicketService
|
||
|
#
|
||
|
# SINCE 1.4.0
|
||
|
# RESTART REQUIRED
|
||
|
tickets.service = {{ gitblit_tickets_service }}
|
||
|
tickets.acceptNewTickets = {{ gitblit_accept_new_tickets }}
|
||
|
|
||
|
web.allowDeletingNonEmptyRepositories = {{ gitblit_allow_deleting_non_empty_repo }}
|
||
|
realm.authenticationProviders = {{ gitblit_auth_providers }}
|
||
|
web.siteName = {{ gitblit_web_sitename }}
|
||
|
web.headerLogo = {{ gitblit_web_logo }}
|
||
|
web.canonicalUrl = {{ gitblit_canonical_url }}
|
||
|
#
|
||
|
# Auth
|
||
|
realm.windows.permitBuiltInAdministrators = {{ gitblit_windows_permitbuiltinadmin }}
|
||
|
# Redmine backend
|
||
|
realm.redmine.url = {{ gitblit_redmine_url }}
|