aboutsummaryrefslogtreecommitdiffstats
path: root/roles/sshd/templates/sshd_config.j2
blob: b8affa80cfdfae9f3323ea94ddf0d91f8a18b356 (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
26
27
28
# managed by Ansible

# network
Port {{ sshd_listen_port }}

# security
PermitRootLogin yes
MaxAuthTries 6
MaxSessions 10

# auth
AuthorizedKeysFile .ssh/authorized_keys
PasswordAuthentication no
PermitEmptyPasswords no
ClientAliveInterval 180
X11Forwarding {{ "yes" if sshd_enable_x11_forwarding else "no" }}

{% if ansible_distribution == "Debian" %}
Subsystem sftp /usr/lib/openssh/sftp-server
ChallengeResponseAuthentication no
UsePAM yes
PrintMotd no
UsePrivilegeSeparation sandbox
{% elif ansible_distribution == "Archlinux" %}
Subsystem sftp /usr/lib/ssh/sftp-server
{% else %}
Subsystem sftp /usr/libexec/sftp-server
{% endif %}
remember that computers suck.