我应该使用不带 ssl 的 Apache 还是带开放式 ssl 的 Apache?有人能告诉我 ssl 到底是什么吗?

发布于 2024-10-18 14:30:02 字数 133 浏览 2 评论 0原文

我正在寻找服务器软件并决定使用 Apache,但我看到了两种不同版本的 Apache HTTP 服务器 - 一种带有 SSL,一种没有。我一直在阅读有关它的内容,它听起来很重要,但我仍然不知道它到底是什么以及我是否需要它来托管网站。我应该获取哪个版本?

I'm looking for server software and decided on Apache, but I see two different versions of Apache HTTP server - one with SSL and one without. I've been reading about it and it sounds important, but I still don't know exactly what it is and whether I need it for just hosting a website. Which version should I get?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

提赋 2024-10-25 14:30:02

SSL(安全套接字层)是一种基于 HTTP 的加密机制,允许您通过互联网向客户端发送敏感或机密信息,反之亦然,而无需担心数据被任何第三方拦截。

如果您的网站要求用户提交任何个人或机密信息,那么使用 SSL 是一个好主意。您需要从受信任的机构(可以保证您的网站是真实的)获得证书并设置 Apache(使用 SSL)。

如果您的网站只是一组页面和其他信息,并且没有机密信息的交换,您可以继续安装 Apache,无需 SSL。

SSL (Secure Sockets Layer) is an encryption mechanism over HTTP which allows you to send sensitive or confidential information over the internet to a client and vice versa, without the fear of the data being intercepted by any third party.

If your website requires a user to submit any personal or confidential information, using SSL is a good idea. You will need to get a certificate from a trusted authority (who can vouch that your website is genuine) and set up Apache (with SSL).

If your website is just a set of pages and other information and there is no exchange of confidential information, you can go ahead and install Apache, without SSL.

家住魔仙堡 2024-10-25 14:30:02

您是否会要求您的用户将任何类型的敏感信息从他们的浏览器发送到您的网站?然后使用 SSL。但请记住,如果这是一个公共站点,您将希望从受信任的根颁发机构获取 SSL 证书,这样就不会向用户发出有关过期/无效/未签名 SSL 证书的警告。

如果没有提交任何敏感内容,应该没问题。

Are you going to be asking your users to send ANY kind of sensitive information from their browser to your site? Then use SSL. Keep in mind, though, that if this is a public site you will want to get your SSL certificate from a trusted root authority so that there are no warnings to the user about expired/invalid/unsigned SSL certs.

If there's nothing sensitive being submitted, you should be fine.

伴梦长久 2024-10-25 14:30:02

OpenSSL 是 SSL 和 TLS 协议的开源实现。 mod_ssl 是一个通过 SSL 和 TLS 为 Apache 提供加密的软件包。 SSL 和 TLS 指定如何通过 HTTP 安全地加密和发送机密信息。

如果您的网站将收集信用卡号等敏感信息,那么您应该使用 openssl 安装二进制文件,否则选择不带 crpto 的 Win32 二进制文件。

来源:http://molecularsciences.org/articles/should_I_choose_apache_with_or_without_ssl

OpenSSL is an open-source implementation of SSL and TLS protocols. mod_ssl is a package that provides cryptography for Apache via SSL and TLS. SSL and TLS specify how to securely encrypt and send confidential information over HTTP.

If your website will be collecting sensitive information like credit card numbers then you should install binary with openssl otherwise choose Win32 Binary without crpto.

Source: http://molecularsciences.org/articles/should_I_choose_apache_with_or_without_ssl

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文