From 511554c6bdd7daa080506fb62400bf6d295ab9e2 Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Wed, 11 May 2011 22:07:53 -0400 Subject: [PATCH] Renamed User to UserModel. --- gitblit.properties | 22 +++++++++++++--------- 1 files changed, 13 insertions(+), 9 deletions(-) diff --git a/gitblit.properties b/gitblit.properties index 9925499..2bdcf2c 100644 --- a/gitblit.properties +++ b/gitblit.properties @@ -3,10 +3,10 @@ # # Allow push/pull over http/https with JGit servlet -git.allowPushPull = true +git.enableGitServlet = true # Base folder for repositories -# Use forward slashes on Windows!! +# Use forward slashes even on Windows!! git.repositoriesFolder = c:/projects/git # Export all repositories @@ -14,6 +14,7 @@ git.exportAll = true # Search repositories folder for nested repositories +# e.g. /libraries/mylibrary.git git.nestedRepositories = true # The root clone url @@ -22,9 +23,6 @@ # # Authentication Settings # - -# Require authentication for http/https push/pull access of git repositories -git.authenticate = true # Require authentication to see everything but the admin pages web.authenticateViewPages = false @@ -38,6 +36,7 @@ # # Git:Blit Web Settings # +# If blank Git:Blit is displayed. web.siteName = # If web.authenticate=true, users with "admin" role can create repositories, @@ -52,8 +51,7 @@ web.repositoriesMessage = gitblit # Use the client timezone when formatting dates. -# This uses AJAX to determine the browser's timezone and enables Wicket -# session management for the connection. +# This uses AJAX to determine the browser's timezone. web.useClientTimezone = false # Date and Time formats @@ -122,12 +120,15 @@ # server.tempFolder = temp server.log4jPattern = %-5p %d{MM-dd HH:mm:ss.SSS} %-20.20c{1} %m%n +server.log4jPattern.windows = %-5p %m%n +server.log4jPattern.linux = + # # Jetty Settings # -# use NIO connectors. If false, socket connectors will be used. +# Use Jetty NIO connectors. If false, Jetty Socket connectors will be used. server.useNio = true # Standard http port to serve. <= 0 disables this connector. @@ -144,7 +145,10 @@ # You may specify an ip or an empty value to bind to all interfaces. server.httpsBindInterface = localhost -# Password for SSL keystore (keystore password and certificate password must match) +# Password for SSL keystore. +# Keystore password and certificate password must match. +# This is provided for convenience, its probably more secure to set this value +# using the --storePassword command line parameter. server.storePassword = dosomegit # Port for shutdown monitor to listen on. -- Gitblit v1.9.1