ansible/roles/ssh/templates/sshd_config.j2

14 lines
338 B
Plaintext
Raw Normal View History

2022-07-21 15:19:24 +02:00
{{ ansible_managed | comment }}
{% if ansible_os_family == "Ubuntu" %}
Include /etc/ssh/sshd_config.d/*.conf
{% endif %}
AuthorizedKeysFile /etc/ssh/authorized_keys/%u
PermitRootLogin no
PasswordAuthentication no
ChallengeResponseAuthentication no
UsePAM yes
AcceptEnv LANG LC_*
Subsystem sftp /usr/lib/openssh/sftp-server
2022-07-21 21:02:19 +02:00
PrintMotd no