From 41124cddb6edd82c1630efb99b29c839304ed897 Mon Sep 17 00:00:00 2001 From: Eric Myhre <hash@exultant.us> Date: Thu, 10 Apr 2014 18:58:07 -0400 Subject: [PATCH] Support serving repositories over the SSH transport --- src/main/distrib/data/gitblit.properties | 17 +++++++++++++++++ 1 files changed, 17 insertions(+), 0 deletions(-) diff --git a/src/main/distrib/data/gitblit.properties b/src/main/distrib/data/gitblit.properties index 3c60539..5bc28fd 100644 --- a/src/main/distrib/data/gitblit.properties +++ b/src/main/distrib/data/gitblit.properties @@ -93,6 +93,23 @@ # RESTART REQUIRED git.daemonPort = 9418 +# The port for serving the SSH service. <= 0 disables this service. +# On Unix/Linux systems, ports < 1024 require root permissions. +# Recommended value: 29418 +# +# SINCE 1.5.0 +# RESTART REQUIRED +git.sshPort = 29418 + +# Specify the interface for the SSH daemon to bind its service. +# 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 +# localhost. +# +# SINCE 1.5.0 +# RESTART REQUIRED +git.sshBindInterface = localhost + # Allow push/pull over http/https with JGit servlet. # If you do NOT want to allow Git clients to clone/push to Gitblit set this # to false. You might want to do this if you are only using ssh:// or git://. -- Gitblit v1.9.1