diff options
Diffstat (limited to 'gitblit.properties')
-rw-r--r-- | gitblit.properties | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gitblit.properties b/gitblit.properties index 1adadc8a..a4828108 100644 --- a/gitblit.properties +++ b/gitblit.properties @@ -26,8 +26,11 @@ git.cloneUrl = https://localhost/git/ # Require authentication for http/https push/pull access of git repositories
git.authenticate = true
-# Require authentication to see the web ui
-web.authenticate = true
+# Require authentication to see everything but the admin pages
+web.authenticateViewPages = false
+
+# Require admin authentication for the admin functions and pages
+web.authenticateAdminPages = true
# Simple user realm file to authenticate users
server.realmFile = users.properties
|