This is still being reviewed and wasn't meant to be pushed out yet
This reverts commit 67844b4504
.
64 lines
1.9 KiB
Text
64 lines
1.9 KiB
Text
Protocol 2
|
|
|
|
Port {{ sshd_port }}
|
|
|
|
{% if ansible_distribution_major_version == "6" %}
|
|
KexAlgorithms diffie-hellman-group-exchange-sha256
|
|
MACs hmac-sha2-512,hmac-sha2-256
|
|
Ciphers aes256-ctr,aes192-ctr,aes128-ctr
|
|
{% else %}
|
|
KexAlgorithms curve25519-sha256@libssh.org,ecdh-sha2-nistp521,ecdh-sha2-nistp384,ecdh-sha2-nistp256,diffie-hellman-group-exchange-sha256
|
|
Ciphers chacha20-poly1305@openssh.com,aes256-gcm@openssh.com,aes128-gcm@openssh.com,aes256-ctr,aes192-ctr,aes128-ctr
|
|
MACs hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com,umac-128-etm@openssh.com,hmac-sha2-512,hmac-sha2-256,umac-128@openssh.com
|
|
{% endif %}
|
|
|
|
HostKey /etc/ssh/ssh_host_rsa_key
|
|
{% if not ansible_hostname.startswith(('pkgs01','pagure02')) %}
|
|
HostKey /etc/ssh/ssh_host_ed25519_key
|
|
{% endif %}
|
|
|
|
HostCertificate /etc/ssh/ssh_host_rsa_key-cert.pub
|
|
{% if not ansible_hostname.startswith(('pkgs01','pagure02')) %}
|
|
HostCertificate /etc/ssh/ssh_host_ed25519_key-cert.pub
|
|
{% endif %}
|
|
|
|
SyslogFacility AUTHPRIV
|
|
LogLevel VERBOSE
|
|
|
|
PermitRootLogin without-password
|
|
StrictModes yes
|
|
AuthorizedKeysFile .ssh/authorized_keys
|
|
|
|
PasswordAuthentication no
|
|
ChallengeResponseAuthentication no
|
|
GSSAPIAuthentication no
|
|
UsePAM yes
|
|
|
|
AllowAgentForwarding no
|
|
X11Forwarding no
|
|
PermitTunnel no
|
|
|
|
{% if ansible_distribution_major_version == "6" %}
|
|
UsePrivilegeSeparation yes
|
|
{% elif ansible_distribution_major_version == "7" %}
|
|
UsePrivilegeSeparation sandbox
|
|
{% endif %}
|
|
|
|
# Accept locale-related environment
|
|
AcceptEnv LANG LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES
|
|
AcceptEnv LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT
|
|
AcceptEnv LC_IDENTIFICATION LC_ALL LANGUAGE
|
|
AcceptEnv XMODIFIERS
|
|
|
|
{% if sshd_keyhelper %}
|
|
AuthorizedKeysCommandUser git
|
|
AuthorizedKeysCommand /usr/libexec/pagure/keyhelper.py "%u" "%h" "%t" "%f"
|
|
{% else %}
|
|
AuthorizedKeysCommandUser nobody
|
|
AuthorizedKeysCommand /usr/bin/sss_ssh_authorizedkeys
|
|
{% endif %}
|
|
|
|
|
|
{% if sshd_sftp %}
|
|
Subsystem sftp internal-sftp
|
|
{% endif %}
|