You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Git clients sometimes open a connection and leave it idling,
like when compressing objects.
Settings like timeout client in HAProxy might cause these
idle connections to be terminated.
Let's send the keepalive message in order to prevent a client
from closing
Copy file name to clipboardExpand all lines: config.yml.example
+2
Original file line number
Diff line number
Diff line change
@@ -76,6 +76,8 @@ sshd:
76
76
web_listen: "localhost:9122"
77
77
# Maximum number of concurrent sessions allowed on a single SSH connection. Defaults to 10.
78
78
concurrent_sessions_limit: 10
79
+
# Sets an interval after which server will send keepalive message to a client
80
+
client_alive_interval: 15
79
81
# The server waits for this time (in seconds) for the ongoing connections to complete before shutting down. Defaults to 10.
80
82
grace_period: 10
81
83
# The endpoint that returns 200 OK if the server is ready to receive incoming connections; otherwise, it returns 503 Service Unavailable. Defaults to "/start".
0 commit comments