如何生成自签名并配置 SSL?
我对 SSL 很陌生,想为我在 GLASSFISH 上的应用程序安装 SSL,虽然尝试找到一些可以从基础开始教我的教程,但无法找到任何详细的解决方案。 1)如何为SSL生成自签名证书? 2)如何在我的应用程序中配置此证书? 3)如何在SSL上仅配置登录页面? 4)这个openSSL是什么,如何在应用程序中使用它?
I am very new to SSL,wants to install SSL for my application on GLASSFISH,though tried to find some tutorials which can teach me from basic,but was unable to find any elaborative solution .
1)Like how to generate a self signed Certificate for the SSL?
2)How to configure this certificate with my application?
3)how to Configure only LOGIN page on SSL?
4)What is this openSSL,how it can be used in application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于问题 3。可以这样做:
创建一个名为“userauth”的安全领域,指令如下:
http://docs.oracle.com/cd/E18930_01/html /821-2435/ggkuk.html
配置您的 web.xml 以通过要求其设置 CONFIDENTIAL(加密)属性来保护您的登录页面。 示例:
使用上述配置,登录页面(login.* 或 /login/*)需要安全通道,在本例中为 HTTPS。 因此,如果您的 glassfish 服务器中配置正确,您的应用程序将自动重定向到 SSL 端口。
For question 3. It can be done like:
Create a security realm called "userauth" instructions in :
http://docs.oracle.com/cd/E18930_01/html/821-2435/ggkuk.html
configure your web.xml to protect your login page by requiring it to have CONFIDENTIAL (encrypted) property set. Example:
with the above config, login page (login.* or /login/*) requires a secure channel, in this case HTTPS. So your application will automatically redirect to the SSL port if properly configured in your glassfish server.