Curious things I discovered about Ansible in Advent of Code
jamielinux.com3 pointsby jamielinux0 comments
agwa wrote:
> Last I looked nginx used fixed 1024 bit parameters, which is very bad.
> I don't know if this has changed or if there's a bug report.
NGINX has had the ssl_dhparam directive (allowing dhparam of arbitrary size) since version 0.7.2, released in 2008. HostKey /etc/ssh/ssh_host_rsa_key
You can also force this on the client-side in ~/.ssh/config: HostKeyAlgorithms ssh-rsa
See man pages for defaults.
Though it's definitely a faff, and it's required every time there's kernel upgrade.