服务监听与letsencrypt加密
目录结构
主目录
listenLetsencrypt
—— main.go
代码示例
main.go
//包main提供与letsencrypt.org集成
package main
import (
"github.com/kataras/iris"
)
func main() {
app := iris.New()
app.Get("/", func(ctx iris.Context) {
ctx.Writef("Hello from SECURE SERVER!")
})
app.Get("/test2", func(ctx iris.Context) {
ctx.Writef("Welcome to secure server from /test2!")
})
app.Get("/redirect", func(ctx iris.Context) {
ctx.Redirect("/test2")
})
//注意:这不适用于这样的域名,
//使用真正的白名单域(或由空格分割的域)
//而不是非公开的电子邮件。
//app.Run(iris.AutoTLS("studyiris.com:443", "studyiris.com www.studyiris.com", "mail@example.com"))
app.Run(iris.AutoTLS(":443", "example.com", "mail@example.com"))
}
当前内容版权归 studyiris.com 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 studyiris.com .