wapt-openssh/sshd_config.j2

6 lines
221 B
Django/Jinja

AuthorizedKeysFile .ssh/authorized_keys
Subsystem sftp sftp-server.exe
{% if ssh_ciphers | length > 0 %}
Ciphers {{ ssh_ciphers }}
{% endif %}
PasswordAuthentication {{ 'yes' if ssh_password_auth == True else 'no' }}