Golang: HTTP & Networking
Secure HTTPS servers in Go
In this article, we are going to look at some of the basic APIs of the http
package to create and initialize HTTPS servers in Go.
In the “Simple Hello World Server” lesson, we learned about net/http
package, how to create routes and how ServeMux
works. In the…