For those of you running Go backends in production:
What is your stack / configuration for running a Go web application?
I haven\'t seen much on this topic b
You can bind your binary to a socket to Internet domain privileged ports (port numbers less than 1024) using setcap
setcap 'cap_net_bind_service=+ep' /path/to/binary
sudo as necessarysetcapsetcap documentation
cap_net_bind_service documentation