5,713
社区成员
发帖
与我相关
我的任务
分享
代码如下,用mormot2创建了一个http服务,但是现在 要实现https,不知道怎么 加载证书?
求 大神指点
httpServer:=THttpApiServer.Create(true);
httpServer.RegisterCompress(CompressDeflate);
httpServer.HttpQueueLength:=200; // 创建n个队列
//这里把https选项直接设置为true也不行
httpServer.AddUrl('/aidpointsoft/api_roomstate.asq', '443', true, '+', true);
//http的80端口
httpServer.AddUrl('/aidpointsoft/api_roomstate.asq', '80', false, '+', true);
httpServer.OnRequest := HttpProcess; // 处理通信事件
httpServer.Clone(200); // 克隆N个工作线程
httpServer.Start;