summaryrefslogtreecommitdiffstats
path: root/src/main/distrib/data/gitblit.properties
diff options
context:
space:
mode:
authorJames Moger <james.moger@gitblit.com>2013-10-27 11:05:11 -0400
committerJames Moger <james.moger@gitblit.com>2013-10-27 11:05:11 -0400
commit9c7bb3d377a0637ff034be407cb9c03c606647a9 (patch)
tree544a3924183b75d62c5b852736008a79600d0b49 /src/main/distrib/data/gitblit.properties
parentaae137d5da475ec72f271811a848d426f05c1b8e (diff)
downloadgitblit-9c7bb3d377a0637ff034be407cb9c03c606647a9.tar.gz
gitblit-9c7bb3d377a0637ff034be407cb9c03c606647a9.zip
Add setting to automatically redirect http requests to the https port
Change-Id: I33966b8292434c10ffd623838d09527aaebaca5f
Diffstat (limited to 'src/main/distrib/data/gitblit.properties')
-rw-r--r--src/main/distrib/data/gitblit.properties14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/main/distrib/data/gitblit.properties b/src/main/distrib/data/gitblit.properties
index 7c62c5ad..41aa5a33 100644
--- a/src/main/distrib/data/gitblit.properties
+++ b/src/main/distrib/data/gitblit.properties
@@ -1545,6 +1545,16 @@ server.httpsPort = 8443
# RESTART REQUIRED
server.ajpPort = 0
+# Automatically redirect http requests to the secure https connector.
+#
+# This setting requires that you have configured server.httpPort and server.httpsPort.
+# Unless you are on a private LAN where you trust all client connections, it is
+# recommended to use https for all communications.
+#
+# SINCE 1.4.0
+# RESTART REQUIRED
+server.redirectToHttpsPort = true
+
# Specify the interface for Jetty to bind the standard connector.
# You may specify an ip or an empty value to bind to all interfaces.
# Specifying localhost will result in Gitblit ONLY listening to requests to
@@ -1552,7 +1562,7 @@ server.ajpPort = 0
#
# SINCE 0.5.0
# RESTART REQUIRED
-server.httpBindInterface = localhost
+server.httpBindInterface =
# Specify the interface for Jetty to bind the secure connector.
# You may specify an ip or an empty value to bind to all interfaces.
@@ -1561,7 +1571,7 @@ server.httpBindInterface = localhost
#
# SINCE 0.5.0
# RESTART REQUIRED
-server.httpsBindInterface = localhost
+server.httpsBindInterface =
# Specify the interface for Jetty to bind the AJP connector.
# You may specify an ip or an empty value to bind to all interfaces.