内容简介:HTTPS配置步骤:用 GIN 框架添加一个 github.com/unrolled/secure 中间件就可以了.下面是一个简单的示例代码:
HTTPS配置步骤:
- 首先在阿里云搞定ICP域名备案
- 添加一个子域名
- 给子域名申请免费 SSL 证书, 然后下载证书对应的 pem 和 key 文件.
用 GIN 框架添加一个 github.com/unrolled/secure 中间件就可以了.
下面是一个简单的示例代码:
package main import ( "github.com/gin-gonic/gin" "github.com/unrolled/secure" ) func main() { router := gin.Default() router.Use(TlsHandler()) router.RunTLS(":8080", "ssl.pem", "ssl.key") } func TlsHandler() gin.HandlerFunc { return func(c *gin.Context) { secureMiddleware := secure.New(secure.Options{ SSLRedirect: true, SSLHost: "localhost:8080", }) err := secureMiddleware.Process(c.Writer, c.Request) // If there was an error, do not continue. if err != nil { return } c.Next() } }
上面代码直接在子域名前添加 HTTPS 就可以安全通讯了.
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- Flask框架从入门到精通之模型创建与添加(十二)
- PHP 开发框架 Notadd 发布 Beta5 版本,添加扩展机制
- ybg-spring-fast 1.1.3 框架添加 https 支持
- 主动模式和被动模式,添加监控主机,添加自定义模板,处理图像中的乱码,自动发现
- 苹果将为 Mac 添加 Face ID,为 Magic Keyboard 添加 Touch Bar
- android – 为什么AOSP添加新的API来支持库而不添加到SDK?
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Writing Apache Modules with Perl and C
Lincoln Stein、Doug MacEachern / O'Reilly Media, Inc. / 1999-03 / USD 39.95
Apache is the most popular Web server on the Internet because it is free, reliable, and extensible. The availability of the source code and the modular design of Apache makes it possible to extend Web......一起来看看 《Writing Apache Modules with Perl and C》 这本书的介绍吧!