
When we started publishing our infra-specs repository to docs.opendev.org we never removed the old copy on specs.openstack.org (simply dropped it from the index there). In an effort to reduce confusion, redirect the entire /openstack-infra tree to our tenant on the docs site where the current copy lives. To be clear, the old specs were published to a /openstack-infra/infra-specs directory but those were the only thing in /openstack-infra, so redirecting to docs.opendev.org/opendev will match the infra-specs subdirectories up on both of them while also shadowing the bare autoindex of the parent directory on the old site. Change-Id: I95082a56d008d0839e92040992f68711ce292e40
44 lines
1.4 KiB
Plaintext
44 lines
1.4 KiB
Plaintext
Define AFS_ROOT /afs/openstack.org/project/specs.openstack.org
|
|
|
|
<VirtualHost *:80>
|
|
ServerName specs.openstack.org
|
|
RewriteEngine On
|
|
RewriteRule ^/(.*) https://specs.openstack.org/$1 [last,redirect=permanent]
|
|
LogLevel warn
|
|
ErrorLog /var/log/apache2/specs.openstack.org_error.log
|
|
CustomLog /var/log/apache2/specs.openstack.org_access.log combined
|
|
ServerSignature Off
|
|
</VirtualHost>
|
|
|
|
<IfModule mod_ssl.c>
|
|
<VirtualHost *:443>
|
|
|
|
ServerName specs.openstack.org
|
|
|
|
DocumentRoot ${AFS_ROOT}
|
|
|
|
SSLCertificateFile /etc/letsencrypt-certs/specs.openstack.org/specs.openstack.org.cer
|
|
SSLCertificateKeyFile /etc/letsencrypt-certs/specs.openstack.org/specs.openstack.org.key
|
|
SSLCertificateChainFile /etc/letsencrypt-certs/specs.openstack.org/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
|
|
|
|
<Directory ${AFS_ROOT}>
|
|
Options Indexes FollowSymLinks MultiViews
|
|
AllowOverrideList Redirect RedirectMatch
|
|
Require all granted
|
|
</Directory>
|
|
|
|
RewriteEngine On
|
|
RewriteRule ^/openstack-infra/(.*) https://docs.opendev.org/opendev/$1 [last,redirect=permanent]
|
|
|
|
LogLevel warn
|
|
ErrorLog /var/log/apache2/specs.openstack.org_error.log
|
|
CustomLog /var/log/apache2/specs.openstack.org_access.log combined
|
|
ServerSignature Off
|
|
|
|
</VirtualHost>
|
|
</IfModule>
|