gpt4 book ai didi

tomcat - 使用 tomcat 配置 SSL

转载 作者:行者123 更新时间:2023-11-28 22:45:17 27 4
gpt4 key购买 nike

对所有人来说都是美好的一天。

我已经生成一个自签名的 KeyStore 文件并使用它把它添加到 Tomcat

<Connector port=”8443″
maxThreads=”150″ minSpareThreads=”25″ maxSpareThreads=”75″
enableLookups=”true” disableUploadTimeout=”true”
acceptCount=”100″ debug=”0″ scheme=”https” secure=”true”
clientAuth=”false” sslProtocol=”TLS”
keystoreFile=”/webapps/techtracer.bin”
keystorePass=”ttadmin” />

实际上我的链接是访问内部运行的应用程序一个 Tomcat 正在使用这个

http:localhost:8080/SpringEx/index.html 

但 ssl 证书只有在我这样做时才有效

http:localhost:8443/SpringEx/index.html 

这种行为正常吗??

谢谢。

最佳答案

是的,这很正常。但是,如果您想使用更友好的链接访问,例如 https://localhost/SpringEx/index.html 试试这个:

您的 server.xml 中可能有另一个连接器

<Connector executor="tomcatThreadPool"
port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />

尝试将 redirectPort 设置为 443,然后在连接器中也使用 443 作为端口。

<Connector port=”443″
maxThreads=”150″ minSpareThreads=”25″ maxSpareThreads=”75″
enableLookups=”true” disableUploadTimeout=”true”
acceptCount=”100″ debug=”0″ scheme=”https” secure=”true”
clientAuth=”false” sslProtocol=”TLS”
keystoreFile=”/webapps/techtracer.bin”
keystorePass=”ttadmin” />

现在您应该可以在 https://localhost/SpringEx/index.html 上访问您的服务了

关于tomcat - 使用 tomcat 配置 SSL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7790101/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com