From f988253399ee475aa4f4e60adb95a220f8f88d21 Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Thu, 12 May 2011 17:33:31 -0400 Subject: [PATCH] Moved distribution files. Revised build script. Security revisions. --- gitblit.properties | 20 ++++++++++++-------- 1 files changed, 12 insertions(+), 8 deletions(-) diff --git a/gitblit.properties b/gitblit.properties index c51fffd..b9aae7c 100644 --- a/gitblit.properties +++ b/gitblit.properties @@ -3,7 +3,7 @@ # # Allow push/pull over http/https with JGit servlet -git.allowPushPull = true +git.enableGitServlet = true # Base folder for repositories # Use forward slashes even on Windows!! @@ -24,9 +24,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 @@ -34,7 +31,11 @@ web.authenticateAdminPages = true # Simple user realm file to authenticate users -server.realmFile = users.properties +realm.realmFile = users.properties + +# How to store passwords. +# Valid values are plain, md5 or crypt (unix style). Default is md5. +realm.passwordStorage = md5 # # Git:Blit Web Settings @@ -131,11 +132,11 @@ # 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. -server.httpPort = 80 +server.httpPort = 0 # Secure/SSL https port to serve. <= 0 disables this connector. server.httpsPort = 443 @@ -148,7 +149,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