blob: 534ea39bb24b7a9eaaf80b5122faafe95950c9c1 (
plain) (
tree)
|
|
# managed by Ansible
# security
PermitRootLogin yes
MaxAuthTries 6
MaxSessions 10
# auth
AuthorizedKeysFile .ssh/authorized_keys
PasswordAuthentication no
PermitEmptyPasswords no
ClientAliveInterval 180
{% if ansible_facts["os_family"] == "Debian" %}
Subsystem sftp /usr/lib/openssh/sftp-server
ChallengeResponseAuthentication no
UsePAM yes
PrintMotd no
UsePrivilegeSeparation sandbox
{% else %}
Subsystem sftp /usr/libexec/sftp-server
{% endif %}
|