我正在运行tomee(8.0.1)docker映像版本,我想在其上启用ssl。
我看过这些主题:
第一种和第二种方法是我尝试过的方法,但是没有用。即使重新启动我的容器。
第二个不是我想要的方式。我的想法是配置服务器,并将其作为映像放在我的存储库中。
在下面,我在server.xml中添加的配置:
<!-- To generate a keystore certificate, here is the command:
keytool -genkey -alias fnsanzabandi -keyalg RSA -keystore fnsanzabandikeystore
-->
<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS"
keystoreFile="conf/fnsanzabandikeystore"
keystorePass="changeit" />
也许我错过了某些事情,或者在前案中还有其他事情要做。
您能帮我吗?
先谢谢您。