feat: support Let's Encrypt tls.

This commit is contained in:
Bo-Yi Wu
2017-04-03 21:23:45 +08:00
parent 41316b9ca9
commit 46220b726d
4 changed files with 71 additions and 5 deletions

17
examples/auto-tls/main.go Normal file
View File

@ -0,0 +1,17 @@
package main
import (
"github.com/gin-gonic/gin"
)
func main() {
r := gin.Default()
// Ping handler
r.GET("/ping", func(c *gin.Context) {
c.String(200, "pong")
})
// Listen and Server in 0.0.0.0:443
r.RunAutoTLS(":443", "/var/www/.cache", "example.com")
}