...
On the API server that will connect to the Remote RS via HTTP, import the remote RS certificate. For example, for the default cacerts keystore.
Code Block | ||
---|---|---|
| ||
keytool -import -trustcacerts -alias myremoters.bcn.abiquo.com -file /etc/pki/abiquo/myremoters.bcn.abiquo.crt -keystore cacerts |
...
Enable SSL proxy for Apache
For AM connections to work with TLS (for template upload and download), check or enable SSL proxy for Apache
To do this, add Add the following config to your apache virtualhost config, on the API/UI server in /etc/httpd/conf.d/abiquo.conf
.
Code Block |
---|
####APACHE SSL PROXY########## SSLProxyEngine On SSLProxyVerify none SSLProxyCheckPeerCN off SSLProxyCheckPeerName off SSLProxyCheckPeerExpire off ############################## |
...