...
Code Block |
---|
<Service name="Catalina">
<Connector
protocol="org.apache.coyote.http11.Http11NioProtocol"
port="8009" maxThreads="200"
scheme="https" secure="true" SSLEnabled="true"
keystoreFile="/opt/abiquo/tomcat/conf/remoters.jks" keystorePass="changeit" keyAlias="myremoters.bcn.abiquo.com"
clientAuth="false" secretrequired="false"
sslProtocol="TLS"/> |
Have in mind you will have to point to a keystore and also configure the rest of parameters accordingly.
...
Code Block |
---|
openssl pkcs12 -export -in myremoters.bcn.abiquo.com.crt -inkey myremoters.bcn.abiquo.com.key -name myremoters.bcn.abiquo.com -out import_cert_key |
Import it into the RS keystore keystore Tomcat is is going to use:
Code Block |
---|
keytool -importkeystore -deststorepass changeit -destkeystore remoters.jks -srckeystore import_cert_key -srcstoretype PKCS12 |
...
You should be able now to add your remote RS using HTTPS protocol: