I know that Golang contain native built-in web server(net/http) that can be used as server without using external web servers(apache,nginx,etc). For local development, you simply run http.ListenAndServe
and your server is ready locally.
My question is, How to set up your golang app to be accessed by others publicly without the need of external web servers?