SSL With Jetty in Standard Flavor Pre-installed

I am using the full version LTS 11.10.10 in CentOS (xWiki+Jetty+HSQL)

Need to install SSL. I am not using tomcat. Any pointers?

Best
Dominic

Probably easier to use Apache or nginx in front of Jetty

Thank you. Reverse proxy is what I ended up doing. Already Apache running in that server so just added this block

<VirtualHost *:443>    
    ServerName      "xwiki.mydomain.com"
    SSLEngine on

    SSLCertificateFile /etc/ssl/spscert/ServerCertificate.crt
    SSLCertificateKeyFile /etc/ssl/spscert/privatekeyrsa.key
    SSLCertificateChainFile /etc/ssl/spscert/CertificateChainFile.crt

    <IfModule mod_proxy.c>
        ProxyRequests Off
        <Proxy *>
            Require all granted
        </Proxy>

        ProxyPass /xwiki http://localhost:8080/xwiki
        ProxyPassReverse /xwiki http://localhost:8080/xwiki
    </IfModule>

</VirtualHost>

Hope this helps someone. Appreciate if any suggestion/comments here.

Great! Thank you for posting back the configuration used.