jpillora / overseer

Monitorable, gracefully restarting, self-upgrading binaries in Go (golang)
MIT License
2.33k stars 209 forks source link

[Feature] Add TLS support #11

Closed rafaeljusto closed 8 years ago

rafaeljusto commented 8 years ago

Today when filling the Address of the overseer.Config type we open a TCP listener. It would be great to add TLS support.

jpillora commented 8 years ago

See https://golang.org/pkg/crypto/tls/#NewListener

tlsListener := tls.NewListener(tcpListener, tls.Config{ ... })
rafaeljusto commented 8 years ago

Thanks! :smile: