Hello All,I have been serving a Go web application with Nginx using a reverse proxy. I have seen some online tutorials talk about using http/2 and using Go with https. My question is, should I be using Nginx to serve my Go app or is Go by itself enough? Any advice would be great, everything that I find when I do a good search is from 3+ years ago and not in the context of http/2 & https.
--
You received this message because you are subscribed to the Google Groups "golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Hello All,I have been serving a Go web application with Nginx using a reverse proxy. I have seen some online tutorials talk about using http/2 and using Go with https. My question is, should I be using Nginx to serve my Go app or is Go by itself enough? Any advice would be great, everything that I find when I do a good search is from 3+ years ago and not in the context of http/2 & https.
One possible benefit is to serve static files, since Nginx was designed for that purpose and offers a lot of options.But caddy is probably the same. I don't know if caddy proxy supports HTTP2. Nginx does not support it.
--
So have I been learning the wrong lessons, or am I behind the curve in current cloud architecture trends?