-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
配置文件中,开启https选项开启,但实际上未开启 #340
Comments
This was referenced Mar 5, 2025
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
配置文件中开启https



使用https schema访问sqle
使用http schema 访问sqle
实际上,在代码中,enable https这个字段并未被引用。相关实现未实现
如何测试
启用HTTPS所需的SSL/TLS证书文件:
cert.pem - 这是SSL证书文件,包含服务器的公钥和身份信息。它用于向客户端证明服务器的身份。
key.pem - 这是私钥文件,配合证书使用,用于加密和解密HTTPS通信数据。
要生成这两个文件,你可以使用OpenSSL工具创建自签名证书。以下是简单的生成方法:
执行命令后,系统会提示你输入一些信息(国家、组织等),填写完成后就会在指定目录生成这两个文件。
注意:自签名证书会在浏览器中显示不安全警告。如果是生产环境,建议使用Let's Encrypt等服务获取受信任的免费证书。
The text was updated successfully, but these errors were encountered: