Make sshd_config more flexible regarding connections (#16009)
* Make sshd_config more flexible regarding MaxStartups and MaxSessions. See https://man.openbsd.org/sshd_config for more information. * make property prefix equals other existing Gitea SSH properties. Co-authored-by: dlouzado <dlouzado@senado.leg.br>
This commit is contained in:
parent
c63d1d814c
commit
5de01e21a1
1 changed files with 3 additions and 0 deletions
|
@ -5,6 +5,9 @@ AddressFamily any
|
|||
ListenAddress 0.0.0.0
|
||||
ListenAddress ::
|
||||
|
||||
MaxStartups ${SSH_MAX_STARTUPS}
|
||||
MaxSessions ${SSH_MAX_SESSIONS}
|
||||
|
||||
LogLevel INFO
|
||||
|
||||
HostKey /data/ssh/ssh_host_ed25519_key
|
||||
|
|
Reference in a new issue