为我简单编写的 php 套接字服务器编写 ssl 加密的包装器
我用谷歌搜索了一下,但没有找到太多相关信息。关于用 C 编写的简单套接字到 SSL 套接字的堆栈溢出,有一个 问题,但是我想要 PHP 中的。
我使用的是用 PHP 编写的 HTTP 服务器,其详细信息可以在 链接。问题是它是一个简单的 http 服务器,具有简单的读写功能,我想对其进行包装并与该服务器建立 SSL 连接,并使其侦听端口 443。
我可以提供一些有关如何进行操作的指示吗?
I have googled around it and did not find much around it. There was one question on stack overflow regarding simple socket written in C to SSL socket, but i want that in PHP.
I am using a HTTP server written in PHP, whose details can be found in SocketDaemon.php
in this link. The problem is that it is a simple http server with simple read writes which i want to wrap and make an SSL connection to this server, and make it listen to port 443.
Can i have some pointers on how to go about it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
stunnel 在这种情况下完全有效。它监听 443 端口并在内部连接到 80 端口,这正是我想要的。
stunnel totally worked in this case. It listened on 443 port and connected to 80 port internally, just what i wanted.