autotls
autotls copied to clipboard
Support Let's Encrypt for a Go server application.
main.go: ``` package main import ( "log" "net/http" "github.com/gin-gonic/autotls" "github.com/gin-gonic/gin" ) func main() { r := gin.Default() // Ping handler r.GET("/ping", func(c *gin.Context) { c.String(http.StatusOK, "pong") }) log.Fatal(autotls.Run(r, "example1.com", "example2.com"))...
When I use cloudflare, there is an endless loop of redirects going on https://developers.cloudflare.com/ssl/troubleshooting/too-many-redirects/#redirect-rules Fixed the problem locally by removing the redirect. I would like to be able to disable...
Hi, the Let's encrypt cert should expire after several months. Will the autotls renew it?
Excuse me? After this framework automatically implements stl, how do I configure the listening port for the service? Can I only use 80 as the listening port by default? Also,...
Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 5 to 6. Release notes Sourced from golangci/golangci-lint-action's releases. v6.0.0 What's Changed This version removes annotations option (because it was useless), and removes the default output format...
So, not being able to assign the port (443) makes sense to me (limitation of ACME), but there should still be a way to assign a listening _address_. # Background...
Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.26.0 to 0.28.0. Commits adef4cc go.mod: update golang.org/x dependencies a0819fb sha3: fix cSHAKE initialization for extremely large N and or S 42ee18b ssh: return ServerAuthError after too...