Skip to content

Instantly share code, notes, and snippets.

@cbluth
Forked from alexedwards/gist.go
Created October 12, 2023 08:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cbluth/efb08f2f8ce2a52e8e06cf1becb80d96 to your computer and use it in GitHub Desktop.
Save cbluth/efb08f2f8ce2a52e8e06cf1becb80d96 to your computer and use it in GitHub Desktop.
ACME Autocert for Go
package main
import (
"crypto/tls"
"flag"
"fmt"
"log"
"net/http"
"time"
"golang.org/x/crypto/acme/autocert"
)
func main() {
environment := flag.String("environment", "development", "Environment")
flag.Parse()
mux := http.NewServeMux()
mux.HandleFunc("/", greet)
if *environment == "production" {
serveProduction(mux)
} else {
serveDevelopment(mux)
}
}
func serveDevelopment(h http.Handler) {
err := http.ListenAndServe(":4080", h)
log.Fatal(err)
}
func serveProduction(h http.Handler) {
// Configure autocert settings
autocertManager := autocert.Manager{
Prompt: autocert.AcceptTOS,
HostPolicy: autocert.HostWhitelist("your.website.com"),
Cache: autocert.DirCache("/path/to/cert/directory"),
}
// Listen for HTTP requests on port 80 in a new goroutine. Use
// autocertManager.HTTPHandler(nil) as the handler. This will send ACME
// "http-01" challenge responses as necessary, and 302 redirect all other
// requests to HTTPS.
go func() {
srv := &http.Server{
Addr: ":80",
Handler: autocertManager.HTTPHandler(nil),
IdleTimeout: time.Minute,
ReadTimeout: 5 * time.Second,
WriteTimeout: 10 * time.Second,
}
err := srv.ListenAndServe()
log.Fatal(err)
}()
// Configure the TLS config to use the autocertManager.GetCertificate function.
tlsConfig := &tls.Config{
GetCertificate: autocertManager.GetCertificate,
PreferServerCipherSuites: true,
CurvePreferences: []tls.CurveID{tls.X25519, tls.CurveP256},
}
srv := &http.Server{
Addr: ":443",
Handler: h,
TLSConfig: tlsConfig,
IdleTimeout: time.Minute,
ReadTimeout: 5 * time.Second,
WriteTimeout: 10 * time.Second,
}
err := srv.ListenAndServeTLS("", "") // Key and cert provided automatically by autocert.
log.Fatal(err)
}
func greet(w http.ResponseWriter, r *http.Request) {
fmt.Fprint(w, "Hello World!")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment