diff options
author | James Moger <james.moger@gitblit.com> | 2013-09-27 14:27:15 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2013-09-27 21:33:26 -0400 |
commit | b325021c4e3168ef77bf3eb28be1d4c834595de8 (patch) | |
tree | 1d301990531eded35cfb3298e0c32c5433e29af3 /src/main/distrib | |
parent | 629806c4c04d3bfc058056069c3123fd91782639 (diff) | |
download | gitblit-b325021c4e3168ef77bf3eb28be1d4c834595de8.tar.gz gitblit-b325021c4e3168ef77bf3eb28be1d4c834595de8.zip |
Change default access restriction to PUSH
Change-Id: I74b3f9fedd77294c53648f8eaa730d4a84917555
Diffstat (limited to 'src/main/distrib')
-rw-r--r-- | src/main/distrib/data/gitblit.properties | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/distrib/data/gitblit.properties b/src/main/distrib/data/gitblit.properties index 9a02e231..7c62c5ad 100644 --- a/src/main/distrib/data/gitblit.properties +++ b/src/main/distrib/data/gitblit.properties @@ -155,7 +155,7 @@ git.allowCreateOnPush = true # information.
#
# SINCE 1.4.0
-git.allowAnonymousPushes = true
+git.allowAnonymousPushes = false
# The default access restriction for new repositories.
# Valid values are NONE, PUSH, CLONE, VIEW
@@ -165,7 +165,7 @@ git.allowAnonymousPushes = true # VIEW = authenticated view, clone, & push
#
# SINCE 1.0.0
-git.defaultAccessRestriction = NONE
+git.defaultAccessRestriction = PUSH
# The default authorization control for new repositories.
# Valid values are AUTHENTICATED and NAMED
|