diff options
author | James Moger <james.moger@gitblit.com> | 2012-08-02 00:27:02 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2012-08-02 00:27:02 -0400 |
commit | 6adf56bb13227afac2c37871b3443fb5354d132c (patch) | |
tree | 1a39648f0f8f9dbce31753dfd4b75f9a3322bdb9 /distrib/gitblit.properties | |
parent | d65fb8f1b77a7254c22edc9e7d8f47b29ec33072 (diff) | |
download | gitblit-6adf56bb13227afac2c37871b3443fb5354d132c.tar.gz gitblit-6adf56bb13227afac2c37871b3443fb5354d132c.zip |
Per-repository authorization control: AUTHENTICATED and NAMED (issue 117)
Diffstat (limited to 'distrib/gitblit.properties')
-rw-r--r-- | distrib/gitblit.properties | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/distrib/gitblit.properties b/distrib/gitblit.properties index 0923c41b..70718b67 100644 --- a/distrib/gitblit.properties +++ b/distrib/gitblit.properties @@ -63,6 +63,14 @@ git.onlyAccessBareRepositories = false # SINCE 1.0.0
git.defaultAccessRestriction = NONE
+# The default authorization control for new repositories.
+# Valid values are AUTHENTICATED and NAMED
+# AUTHENTICATED = any authenticated user is granted restricted access
+# NAMED = only named users/teams are granted restricted access
+#
+# SINCE 1.0.1
+git.defaultAuthorizationControl = NAMED
+
# Number of bytes of a pack file to load into memory in a single read operation.
# This is the "page size" of the JGit buffer cache, used for all pack access
# operations. All disk IO occurs as single window reads. Setting this too large
|