diff options
author | terminaldweller <thabogre@gmail.com> | 2021-09-11 18:26:52 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2021-09-11 18:26:52 +0000 |
commit | bb6958b6f6ca38520a1c26976b5ce71ca8c508f3 (patch) | |
tree | a0c17efc6c1fcd3365d2dbe91b26db2a4277e378 /hived.go | |
parent | added a codacy badge (diff) | |
download | hived-bb6958b6f6ca38520a1c26976b5ce71ca8c508f3.tar.gz hived-bb6958b6f6ca38520a1c26976b5ce71ca8c508f3.zip |
https support-WIP
Diffstat (limited to 'hived.go')
-rw-r--r-- | hived.go | 15 |
1 files changed, 14 insertions, 1 deletions
@@ -5,6 +5,7 @@ import ( "context" "crypto/hmac" "crypto/sha512" + "crypto/tls" "encoding/hex" "encoding/json" "errors" @@ -601,11 +602,23 @@ func robotsHandler(w http.ResponseWriter, r *http.Request) { func startServer(gracefulWait time.Duration) { r := mux.NewRouter() + cfg := &tls.Config{ + MinVersion: tls.VersionTLS13, + CurvePreferences: []tls.CurveID{tls.CurveP521, tls.CurveP384, tls.CurveP256}, + PreferServerCipherSuites: true, + CipherSuites: []uint16{ + tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, + tls.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, + tls.TLS_RSA_WITH_AES_256_GCM_SHA384, + tls.TLS_RSA_WITH_AES_256_CBC_SHA, + }, + } srv := &http.Server{ Addr: "0.0.0.0:" + *flagPort, WriteTimeout: time.Second * 15, ReadTimeout: time.Second * 15, Handler: r, + TLSConfig: cfg, } r.HandleFunc("/health", healthHandler) r.HandleFunc("/price", priceHandler) @@ -615,7 +628,7 @@ func startServer(gracefulWait time.Duration) { r.HandleFunc("/robots.txt", robotsHandler) go func() { - if err := srv.ListenAndServe(); err != nil { + if err := srv.ListenAndServeTLS("/certs/fullchain.pem", "/certs/privkey.pem"); err != nil { log.Fatal().Err(err) } }() |