shell-things/etc/ssh/sshd_config.d/anoncvs.conf

14 lines
457 B
Plaintext
Raw Normal View History

2021-01-30 20:00:06 +01:00
# 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
2021-01-30 20:00:06 +01:00
Match User anoncvs,git,gitea
PasswordAuthentication no
AuthenticationMethods publickey
2021-01-30 20:00:06 +01:00
X11Forwarding no
AllowTcpForwarding no
PermitTTY no
# ForceCommand cvs server
Match All