在腾讯、百度云里都申请了ssl证书
按照要求修改了 配置文件后 https加域名后就无法访问 http正常
web:tomcat-8.0.28
证书:jks/pfx 都尝试了
证书来源:腾讯云里申请、阿里云申请(轮流试)
修改地方: server.xml
<Connector port="8443" protocol="org.apache.coyote.http11.Http11NioProtocol"
maxThreads="150" keystoreFile="cert/214059385520733.pfx" keystorePass="********" keystoreType="PKCS12" SSLEnabled="true" scheme="https" secure="true"
web.xml
<login-config>
<auth-method>CLIENT-CERT</auth-method>
<realm-name>Client Cert Users-only Area</realm-name>
</login-config>
<security-constraint>
<web-resource-collection>
<web-resource-name >SSL</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
server.xml
Host name="localhost" appBase="webapps"
unpackWARs="true" autoDeploy="true">
<Context path="" docBase="/home/big/web/homesite"
用的是root用户启停的
是个人网站
不知道还有那种情况没考虑到呢,为什么就打不开呢
非常感谢~
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。