用于测试的简单 SSL 服务器
我是网络世界的新手,但我正在创建一个与服务器建立 SSL 连接的应用程序。目前服务器尚未设置,但我想开始测试我正在构建的应用程序。
有没有一种简单的方法可以设置本地 Apache 服务器并将其配置为 SSL?
我是网络新手,所以请对我温柔一些。
编辑:
我正在寻找更多如何设置服务器功能的信息。我可以设置虚拟机,但如何使其接受传入的套接字连接?
I'm new to the world of networking but I'm working on creating an application that will make an SSL connection to a server. Right now the server is not yet setup but I'd like to begin testing on my application I'm building.
Is there an easy way that I can set up a local Apache server and configure it for SSL?
I'm new to networking so be gentle with me.
Edit:
I'm looking more for how to set up the server functionality. I can set up a VM but how do I make it so it accepts incoming socket connections?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您不关心服务器返回的内容,我建议使用
openssl s_server -www
。您需要一个证书,但 Dave G 的答案描述了如何做到这一点(s_server 还需要知道证书在哪里,但openssl s_server help
将向您显示适当的标志)。If you don't care about the content returned by the server, I'd suggest
openssl s_server -www
. You'll need a certificate, but Dave G's answer describes how to do that (s_server will need to know where the cert is also, butopenssl s_server help
will show you the appropriate flags).根据您使用的平台,这些工具可能已经可供您使用。
这是创建“自签名”证书
http://www.tc 的方法。 umn.edu/~brams006/selfsign.html
您将收到安全警告,但您可以建立并使用 SSL 连接。
Depending on which platform you on the tools may already be at your disposal.
this is how to create a "self-signed" certificate
http://www.tc.umn.edu/~brams006/selfsign.html
You will get security warnings but you can establish and utilize an SSL connection.