mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-02 15:59:22 +01:00
Mikaela Suomalainen
288b010fe5
Apparently OpenSSH only allows PasswordAuthentication yes within a Match block.
14 lines
457 B
Plaintext
14 lines
457 B
Plaintext
# Version Control System accounts musn't have X11Forwarding, TCP Forwarding
|
|
# or TTY. The anoncvs is usually a comment in stock sshd_config.
|
|
# The password blocking may only work in reverse so this file is partially
|
|
# useless. https://serverfault.com/a/461865 & OpenSSH_8.4p1
|
|
|
|
Match User anoncvs,git,gitea
|
|
PasswordAuthentication no
|
|
AuthenticationMethods publickey
|
|
X11Forwarding no
|
|
AllowTcpForwarding no
|
|
PermitTTY no
|
|
# ForceCommand cvs server
|
|
Match All
|