diff options
author | James Moger <james.moger@gitblit.com> | 2012-12-05 17:29:39 -0500 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2012-12-05 17:29:39 -0500 |
commit | acb63a082e9497e3a1e2541f5e44587eada7c60b (patch) | |
tree | ce99d24bc7480b162c108aa1599cb9925ec8e735 /distrib | |
parent | e521a7d031fab2655ec6f8eba9876829a4d300b2 (diff) | |
download | gitblit-acb63a082e9497e3a1e2541f5e44587eada7c60b.tar.gz gitblit-acb63a082e9497e3a1e2541f5e44587eada7c60b.zip |
Added server setting to specify keystore alias for ssl certificate (issue 98)
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/gitblit.properties | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/distrib/gitblit.properties b/distrib/gitblit.properties index e3d72211..ce269d2c 100644 --- a/distrib/gitblit.properties +++ b/distrib/gitblit.properties @@ -1155,6 +1155,13 @@ server.httpsBindInterface = localhost # RESTART REQUIRED
server.ajpBindInterface = localhost
+# Alias of certificate to use for https/SSL serving. If blank the first
+# certificate found in the keystore will be used.
+#
+# SINCE 1.2.0
+# RESTART REQUIRED
+server.certificateAlias = localhost
+
# Password for SSL keystore.
# Keystore password and certificate password must match.
# This is provided for convenience, its probably more secure to set this value
|