Server : LiteSpeed System : Linux in-mum-web1112.main-hosting.eu 4.18.0-553.34.1.lve.el8.x86_64 #1 SMP Thu Jan 9 16:30:32 UTC 2025 x86_64 User : u451330669 ( 451330669) PHP Version : 8.2.27 Disable Function : NONE Directory : /opt/go/pkg/mod/github.com/coreos/go-systemd/v22@v22.5.0/examples/activation/httpserver/ |
## socket activated http server This is a simple example of using socket activation with systemd to serve a simple HTTP server on http://127.0.0.1:8076 To try it out `go get` the httpserver and run it under the systemd-activate helper ```bash export GOPATH="$PWD" go get github.com/coreos/go-systemd/examples/activation/httpserver systemd-socket-activate -l 127.0.0.1:8076 ./bin/httpserver ``` Then curl the URL and you will notice that it starts up: ``` curl 127.0.0.1:8076 hello socket activated world! ```