27 lines
500 B
Plaintext
27 lines
500 B
Plaintext
# This is the sshd server system-wide configuration file. See
|
|
# sshd_config(5) for more information.
|
|
|
|
# Logging
|
|
LogLevel INFO
|
|
|
|
# Default
|
|
AllowTcpForwarding {{ if .server.tcp_forwarding }}yes{{ else }}no{{ end }}
|
|
GatewayPorts no
|
|
X11Forwarding no
|
|
|
|
Subsystem sftp /usr/lib/ssh/sftp-server
|
|
|
|
# Authentication:
|
|
PermitRootLogin yes
|
|
|
|
Banner none
|
|
PrintMotd no
|
|
|
|
{{ if .authorized_keys }}
|
|
PasswordAuthentication no
|
|
{{ else if .password }}
|
|
PasswordAuthentication yes
|
|
PermitEmptyPasswords no
|
|
{{ end }}
|
|
|