mirror of
https://github.com/foomo/tlsconfig.git
synced 2025-10-16 12:45:36 +00:00
| .gitignore | ||
| example_test.go | ||
| go.mod | ||
| go.sum | ||
| README.md | ||
| tlsconfig.go | ||
Golang tls configuration helper
golangs tls package is great, but the default configuration is nothing you should use in production. This package is trying to provide and maintain a set of default tls configurations.
securing your server
// construct a webserver with a custom tls configuration
tlsServer := &http.Server{
Addr: "0.0.0.0:443",
Handler: serverHandler,
TLSConfig: tlsconfig.NewServerTLSConfig(tlsconfig.TLSModeServerStrict),
}
tlsServer.ListenAndServeTLS("path/to/cert", "path/to/key")