librespeed / speedtest-go

Go backend for LibreSpeed
GNU Lesser General Public License v3.0
724 stars 153 forks source link

Support systemd socket activation and add example (reasonably secure) systemd unit files #35

Closed tim-seoss closed 2 years ago

tim-seoss commented 2 years ago

This PR add support for systemd socket activation and adds example (reasonably secure) systemd unit files, and docs.

This create a minimal footprint deployment, in a traditional (non-containerised) settings, whilst using the features of systemd to enhance security by configuring numerous sandboxing options.

Socket activation allows systemd to bind a socket listener to a privileged port (e.g. port 80) and pass it to the speedtest binary (using an inherited file descriptor), which allows further security restrictions to be placed on speedtest in some configurations (speedtest can be restricted from e.g. opening other outbound sockets in configs which don't require connecting to external databases).

maddie commented 2 years ago

Thanks!