Get the default configuration file run for OpenSSH, optimized for Debian GNU/Linux 11 (bullseye). This example configuration ensures optimal compatibility and performance for OpenSSH, making it easy to set up and adjust to meet your needs.
Find and download the configuration file here: /etc/sv/ssh/run.
For more configurations and setup guides, visit our related files section to further customize your system.
#!/usr/bin/env /lib/runit/invoke-run
set -e
NAME="ssh"
sv start auditd || sv check auditd || true
# don't start if 'sshd_not_to_be_run' exists
test -e /etc/ssh/sshd_not_to_be_run && exit 161
#Create /run/sshd
test -d /run/sshd || mkdir /run/sshd && chmod 0755 /run/sshd
exec 2>&1
#Config test
/usr/sbin/sshd -t || exit 162
echo "Starting $NAME..."
exec /usr/sbin/sshd -D -e $SSHD_OPTS
Download the raw file with wget or curl
wget -O run.example https://exampleconfig.com/static/raw/openssh/debian11/etc/sv/ssh/run
curl https://exampleconfig.com/static/raw/openssh/debian11/etc/sv/ssh/run > run.example
Other config files you might find useful