fix: Include Mozilla CA certificate list for TLS trust

This commit is contained in:
2024-03-08 12:31:17 +11:00
parent 8b4a635d15
commit 72ed8073bf
3 changed files with 4 additions and 1 deletions

View File

@ -11,6 +11,7 @@ import (
"syscall"
"time"
_ "github.com/breml/rootcerts"
"github.com/gorilla/mux"
)
@ -49,7 +50,6 @@ func readinessHandler(w http.ResponseWriter, r *http.Request) {
}
func main() {
// Create Server and Route Handlers
r := mux.NewRouter()
r.HandleFunc("/", handler)