28 lines
666 B
Django/Jinja
28 lines
666 B
Django/Jinja
Listen {{ env.VMEDIA_TLS_PORT }}
|
|
|
|
<VirtualHost *:{{ env.VMEDIA_TLS_PORT }}>
|
|
ErrorLog /dev/stderr
|
|
LogLevel debug
|
|
CustomLog /dev/stdout combined
|
|
|
|
SSLEngine on
|
|
SSLProtocol {{ env.IRONIC_VMEDIA_SSL_PROTOCOL }}
|
|
SSLCertificateFile {{ env.IRONIC_VMEDIA_CERT_FILE }}
|
|
SSLCertificateKeyFile {{ env.IRONIC_VMEDIA_KEY_FILE }}
|
|
|
|
<Directory "/shared">
|
|
AllowOverride None
|
|
Require all granted
|
|
</Directory>
|
|
|
|
<Directory "/shared/html">
|
|
Options Indexes FollowSymLinks
|
|
AllowOverride None
|
|
Require all granted
|
|
</Directory>
|
|
</VirtualHost>
|
|
|
|
<Location ~ "^/(redfish|ilo)/">
|
|
SSLRequireSSL
|
|
</Location>
|