diff options
author | James Moger <james.moger@gitblit.com> | 2013-06-20 17:31:41 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2013-06-20 17:31:41 -0400 |
commit | 73c76b8f7ecaa43c7b5d60ade1c2273af525e8f1 (patch) | |
tree | e06fbbd2ebdb38f1ca93799b861361d3fbcf8f60 /src/main/distrib/data/gitblit.properties | |
parent | be2d71efb0f369ed05d87b556ac543435d30f6bf (diff) | |
download | gitblit-73c76b8f7ecaa43c7b5d60ade1c2273af525e8f1.tar.gz gitblit-73c76b8f7ecaa43c7b5d60ade1c2273af525e8f1.zip |
Added WindowsUserService using Waffle
Diffstat (limited to 'src/main/distrib/data/gitblit.properties')
-rw-r--r-- | src/main/distrib/data/gitblit.properties | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/main/distrib/data/gitblit.properties b/src/main/distrib/data/gitblit.properties index 7936bc2f..f38afefc 100644 --- a/src/main/distrib/data/gitblit.properties +++ b/src/main/distrib/data/gitblit.properties @@ -500,6 +500,7 @@ web.projectsFile = ${baseFolder}/projects.conf # com.gitblit.LdapUserService
# com.gitblit.RedmineUserService
# com.gitblit.SalesforceUserService
+# com.gitblit.WindowsUserService
#
# Any custom user service implementation must have a public default constructor.
#
@@ -1117,12 +1118,39 @@ federation.sets = # SINCE 1.3.0
realm.container.autoCreateAccounts = false
+# The WindowsUserService must be backed by another user service for standard user
+# and team management.
+# default: users.conf
+#
+# RESTART REQUIRED
+# BASEFOLDER
+# SINCE 1.3.0
+realm.windows.backingUserService = ${baseFolder}/users.conf
+
+# Allow or prohibit Windows guest account logins
+#
+# SINCE 1.3.0
+realm.windows.allowGuests = false
+
+# The default domain for authentication.
+#
+# If specified, this domain will be used for authentication UNLESS the supplied
+# login name manually specifies a domain (.e.g. mydomain\james or james@mydomain)
+#
+# If unspecified, the username must be specified in UPN format (name@domain).
+#
+# if "." (dot) is specified, ONLY the local account database will be used.
+#
+# SINCE 1.3.0
+realm.windows.defaultDomain =
+
# The SalesforceUserService must be backed by another user service for standard user
# and team management.
# default: users.conf
#
# RESTART REQUIRED
# BASEFOLDER
+# SINCE 1.3.0
realm.salesforce.backingUserService = ${baseFolder}/users.conf
# Restrict the Salesforce user to members of this org.
|