I've got quite a big VirtualHost definition which I don't want to duplicate just so the site will also run over HTTPS.
Here's what I want to do:
<VirtualHost *>
ServerName example.com
<If port=443>
SSLEngine on
SSLCertificateFile ...
SSLCertificateKeyFile ...
SSLCertificateChainFile ...
</If>
(other config)
</VirtualHost>
Is there some way to do this?
Am I missing some other method of not duplicating the config?