HTTPS using Apache 2.4.x as a reverse proxy

Here we provide an example of a typical Apache 2.4.x configuration. The example assumes the CLC Genomics Server is installed on a machine with the IP address 10.108.241.134. The following would be added to the Apache configuration file on that system. The keys SSLCertificateFile and SSLCertificateKeyFile are paired with the locations of the relevant certificate files.

<VirtualHost *:443>
        SSLEngine on
        SSLCertificateFile /etc/ssl/certs/clcserver01.crt
        SSLCertificateKeyFile /etc/ssl/certs/clcserver01.key
        ProxyPass "/" "http://10.108.241.134:8877/"
        ProxyPassReverse "/" "http://10.108.241.134:8877/"
</VirtualHost>