aboutsummaryrefslogtreecommitdiffstats
path: root/roles/ssh/templates/sshd_config.j2
blob: a11268e14ceaa5fdf26e2592351e93f6fba5345c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

# ssh ~~ /etc/ssh/sshd_config
# 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"] == "OpenBSD" or ansible_facts["os_family"] == "Alpine" %}
Subsystem sftp /usr/libexec/sftp-server
{% elif ansible_facts["os_family"] == "Debian" %}
ChallengeResponseAuthentication no
UsePAM yes
PrintMotd no
UsePrivilegeSeparation sandbox
Subsystem sftp /usr/lib/ssh/sftp-server
{% endif %}
remember that computers suck.