+++ /dev/null
-#\r
-# Git Servlet Settings\r
-#\r
-\r
-# Allow push/pull over http/https with JGit servlet\r
-git.enableGitServlet = true\r
-\r
-# Base folder for repositories\r
-# Use forward slashes even on Windows!!\r
-git.repositoriesFolder = c:/projects/git\r
-\r
-# Export all repositories\r
-# if false, each exported repository must have a .git/git-daemon-export-ok file\r
-git.exportAll = true\r
-\r
-# Search repositories folder for nested repositories\r
-# e.g. /libraries/mylibrary.git\r
-git.nestedRepositories = true\r
-\r
-# The root clone url\r
-git.cloneUrl = https://localhost/git/\r
-\r
-#\r
-# Authentication Settings\r
-#\r
-\r
-# Require authentication to see everything but the admin pages\r
-web.authenticateViewPages = false\r
-\r
-# Require admin authentication for the admin functions and pages\r
-web.authenticateAdminPages = true\r
-\r
-# Simple user realm file to authenticate users\r
-realm.realmFile = users.properties\r
-\r
-# How to store passwords.\r
-# Valid values are plain, md5 or crypt (unix style). Default is md5. \r
-realm.passwordStorage = md5\r
-\r
-#\r
-# Git:Blit Web Settings\r
-#\r
-# If blank Git:Blit is displayed.\r
-web.siteName =\r
-\r
-# If web.authenticate=true, users with "admin" role can create repositories,\r
-# create users, and edit repository metadata (owner, description, etc)\r
-#\r
-# If web.authenticate=false, any user can execute the aforementioned functions. \r
-web.allowAdministration = true\r
-\r
-# This is the message display above the repositories table.\r
-# This can point to a file with Markdown content.\r
-# Specifying "gitblit" uses the internal welcome message.\r
-web.repositoriesMessage = gitblit\r
-\r
-# Use the client timezone when formatting dates.\r
-# This uses AJAX to determine the browser's timezone.\r
-web.useClientTimezone = false\r
-\r
-# Date and Time formats\r
-web.datestampShortFormat = yyyy-MM-dd\r
-web.datetimestampLongFormat = EEEE, MMMM d, yyyy h:mm a z\r
-\r
-# Choose the diff presentation style: gitblt, gitweb, or plain\r
-web.diffStyle = gitblit\r
-\r
-# Control if email addresses are shown in web ui\r
-web.showEmailAddresses = true\r
-\r
-# Shows a combobox in the page links header with commit, committer, and author\r
-# search selection. Default search is commit.\r
-web.showSearchTypeSelection = false\r
-\r
-# Generates a line graph of repository activity over time on the Summary page.\r
-# This is a real-time graph so generation may be expensive. \r
-web.generateActivityGraph = true\r
-\r
-# The number of commits to display on the summary page\r
-# Value must exceed 0 else default of 20 is used\r
-web.summaryCommitCount = 16\r
-\r
-# The number of tags/heads to display on the summary page\r
-# Value must exceed 0 else default of 5 is used\r
-web.summaryRefsCount = 5\r
-\r
-# The number of items to show on a page before showing the first, prev, next\r
-# pagination links. A default if 50 is used for any invalid value.\r
-web.itemsPerPage = 50\r
-\r
-# Registered extensions for google-code-prettify\r
-web.prettyPrintExtensions = c cpp cs css htm html java js php pl prefs properties py rb sh sql xml vb\r
-\r
-# Registered extensions for markdown transformation\r
-web.markdownExtensions = md mkd markdown\r
-\r
-# Image extensions\r
-web.imageExtensions = bmp jpg gif png \r
-\r
-# Registered extensions for binary blobs\r
-web.binaryExtensions = jar pdf tar.gz zip\r
-\r
-# Aggressive heap management will run the garbage collector on every generated\r
-# page. This slows down page generation but improves heap consumption. \r
-web.aggressiveHeapManagement = true\r
-\r
-# Run the webapp in debug mode\r
-web.debugMode = true\r
-\r
-# Enable/disable global regex substitutions (i.e. shared across repositories)\r
-regex.global = true\r
-\r
-# Example global regex substitutions\r
-# Use !!! to separate the search pattern and the replace pattern\r
-# searchpattern!!!replacepattern\r
-regex.global.bug = \\b(Bug:)(\\s*[#]?|-){0,1}(\\d+)\\b!!!<a href="http://somehost/bug/$3">Bug-Id: $3</a>\r
-regex.global.changeid = \\b(Change-Id:\\s*)([A-Za-z0-9]*)\\b!!!<a href="http://somehost/changeid/$2">Change-Id: $2</a>\r
-\r
-# Example per-repository regex substitutions overrides global\r
-#regex.myrepository.bug = \\b(Bug:)(\\s*[#]?|-){0,1}(\\d+)\\b!!!<a href="http://elsewhere/bug/$3">Bug-Id: $3</a>\r
-\r
-#\r
-# Server Settings\r
-#\r
-server.tempFolder = temp\r
-server.log4jPattern = %-5p %d{MM-dd HH:mm:ss.SSS} %-20.20c{1} %m%n\r
-server.log4jPattern.windows = %-5p %m%n\r
-server.log4jPattern.linux =\r
-\r
-\r
-#\r
-# Jetty Settings\r
-#\r
-\r
-# Use Jetty NIO connectors. If false, Jetty Socket connectors will be used.\r
-server.useNio = true\r
-\r
-# Standard http port to serve. <= 0 disables this connector.\r
-server.httpPort = 0\r
-\r
-# Secure/SSL https port to serve. <= 0 disables this connector.\r
-server.httpsPort = 443\r
-\r
-# Specify the interface for Jetty to bind the standard connector.\r
-# You may specify an ip or an empty value to bind to all interfaces. \r
-server.httpBindInterface = localhost\r
-\r
-# Specify the interface for Jetty to bind the secure connector.\r
-# You may specify an ip or an empty value to bind to all interfaces.\r
-server.httpsBindInterface = localhost\r
-\r
-# Password for SSL keystore.\r
-# Keystore password and certificate password must match.\r
-# This is provided for convenience, its probably more secure to set this value\r
-# using the --storePassword command line parameter.\r
-server.storePassword = dosomegit\r
-\r
-# Port for shutdown monitor to listen on.\r
-server.shutdownPort = 8081\r