diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-08-09 09:36:56 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-08-09 09:36:56 +0200 |
commit | b89df1a61a2bae8b1f4de4c6d238c9034c2cf326 (patch) | |
tree | fb4fd1097c3cdecf66470941a2131c186f563bf7 /yandex/server/etc/sshd_config | |
parent | add README.md (diff) | |
download | infra-terraform-b89df1a61a2bae8b1f4de4c6d238c9034c2cf326.tar.gz infra-terraform-b89df1a61a2bae8b1f4de4c6d238c9034c2cf326.zip |
move common config files to etc/
Diffstat (limited to 'yandex/server/etc/sshd_config')
-rw-r--r-- | yandex/server/etc/sshd_config | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/yandex/server/etc/sshd_config b/yandex/server/etc/sshd_config deleted file mode 100644 index ae08408..0000000 --- a/yandex/server/etc/sshd_config +++ /dev/null @@ -1,39 +0,0 @@ -Protocol 2 -Port ${port} - -# Drop idle sessions: -ClientAliveCountMax 3 -ClientAliveInterval 15 - -# Allow reverse tunnels: -GatewayPorts yes - -# Miscellaneous: -PrintMotd no - -# Hardening. -# Source: https://infosec.mozilla.org/guidelines/openssh.html - -# Only Ed25519: -HostKey /etc/ssh/ssh_host_ed25519_key - -# Only the first choices for ciphers: -KexAlgorithms curve25519-sha256@libssh.org -Ciphers chacha20-poly1305@openssh.com -MACs hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com - -# No password login: -PasswordAuthentication no -AuthenticationMethods publickey -# Whitelist users: -PermitRootLogin no -AllowGroups ${join(" ", users)} - -# Log things: -Subsystem sftp /usr/lib/openssh/sftp-server -f AUTHPRIV -l INFO - -# Whitelist accepted environment variables: -AcceptEnv LANG LC_* - -# Why the fuck would I need X11 forwarding? -X11Forwarding no |