skynet 开启 https 配置

核能气质少年 提交于 2020-02-10 23:22:25

修改 Makefile

Mac 下:

# https : turn on TLS_MODULE to add https support

TLS_MODULE=ltls
TLS_LIB="$(shell brew --prefix openssl)/lib"
TLS_INC="$(shell brew --prefix openssl)/include"

Linux 下:

# https : turn on TLS_MODULE to add https support

TLS_MODULE=ltls
TLS_LIB=
TLS_INC=

前提是都安装了 openssl

然后在 config 里设置

certfile = "./host.cert"
keyfile = "./host.key"

用 simpleweb.lua 测试,记得先把 http 改成 https

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!