3682f51097
This reverts commit b0d5658b2c
.
Don't merge until static site read-only replicas are updating
regularly again.
Change-Id: I84afc1a2a8e86e16d478d6b0bb306d178b6e7e53
43 lines
1.5 KiB
Plaintext
43 lines
1.5 KiB
Plaintext
<VirtualHost *:80>
|
|
ServerName docs.starlingx.io
|
|
|
|
RewriteEngine on
|
|
RewriteRule ^/(.*) https://docs.starlingx.io/$1 [last,redirect=permanent]
|
|
|
|
ErrorLog /var/log/apache2/docs.starlingx.io_error.log
|
|
LogLevel warn
|
|
CustomLog /var/log/apache2/docs.starlingx.io_access.log combined
|
|
ServerSignature Off
|
|
</VirtualHost>
|
|
|
|
<IfModule mod_ssl.c>
|
|
<VirtualHost *:443>
|
|
ServerName docs.starlingx.io
|
|
|
|
RewriteEngine on
|
|
|
|
SSLCertificateFile /etc/letsencrypt-certs/docs.starlingx.io/docs.starlingx.io.cer
|
|
SSLCertificateKeyFile /etc/letsencrypt-certs/docs.starlingx.io/docs.starlingx.io.key
|
|
SSLCertificateChainFile /etc/letsencrypt-certs/docs.starlingx.io/ca.cer
|
|
SSLProtocol All -SSLv2 -SSLv3
|
|
# Note: this list should ensure ciphers that provide forward secrecy
|
|
SSLCipherSuite ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:!AES256:!aNULL:!eNULL:!MD5:!DSS:!PSK:!SRP
|
|
SSLHonorCipherOrder on
|
|
|
|
DocumentRoot /afs/openstack.org/project/starlingx.io/www
|
|
<Directory /afs/openstack.org/project/starlingx.io/www>
|
|
Options Indexes FollowSymLinks MultiViews
|
|
Require all granted
|
|
AllowOverride None
|
|
# Allow mod_rewrite rules
|
|
AllowOverrideList Redirect RedirectMatch
|
|
ErrorDocument 404 /errorpage.html
|
|
</Directory>
|
|
|
|
ErrorLog /var/log/apache2/docs.starlingx.io_error.log
|
|
LogLevel warn
|
|
CustomLog /var/log/apache2/docs.starlingx.io_access.log combined
|
|
ServerSignature Off
|
|
</VirtualHost>
|
|
</IfModule>
|