Goal (for if you have a better solution than my idea):
Securely host a purely golang backend webapp on a domain that people don't have to type ":port number" to access.
My current situation:
I am learning golang, and ...
Accepted Answer:
setcap 'cap_net_bind_service=+ep' /path/to/binary
1. This command needs to be escalated. sudo as necessary
2. Every new version of your program will result in a new binary that will need to be reauthorized by setcap
s...