Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已阅读Suave 文档,但仍无法使用 HTTPS 协议启动 Suave Web 服务器。
有人可以帮我吗?如果提供示例代码,那就太好了。
您可以像这样创建 HTTPS 绑定:
let cert = new X509Certificate2("certificate.p12","easy") let ssl = HttpBinding.createSimple (HTTPS cert) "127.0.0.1" 8443
证书需要采用 PKCS 格式。