fix newline in sshd-default.conf j2-template. sshd_host_keys must be an array!
This commit is contained in:
parent
b079a81942
commit
3346bd0e08
|
@ -6,5 +6,6 @@ sshd_permit_root_login: 'prohibit-password'
|
|||
sshd_ciphers: 'chacha20-poly1305@openssh.com,aes256-gcm@openssh.com,aes128-gcm@openssh.com,aes256-ctr,aes192-ctr,aes128-ctr'
|
||||
sshd_macs: 'hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com,umac-128-etm@openssh.com'
|
||||
sshd_kex_algorithms: 'sntrup761x25519-sha512@openssh.com,curve25519-sha256,curve25519-sha256@libssh.org,diffie-hellman-group-exchange-sha256'
|
||||
sshd_host_keys: /etc/ssh/ssh_host_ed25519_key
|
||||
sshd_host_keys:
|
||||
- '/etc/ssh/ssh_host_ed25519_key'
|
||||
sshd_pubkey_authentication: 'yes'
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#jinja2: trim_blocks:False
|
||||
{%if sshd_port is defined %}Port {{sshd_port}}{%endif%}
|
||||
PermitRootLogin {{sshd_permit_root_login}}
|
||||
StrictModes yes
|
||||
|
|
Loading…
Reference in a new issue