wapt-openssh/sshd_config.j2

6 lines
221 B
Plaintext
Raw Permalink Normal View History

2019-06-11 11:48:39 +02:00
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' }}