23 lines
648 B
Plaintext
23 lines
648 B
Plaintext
<VirtualHost *:80>
|
|
ServerName test.example.net
|
|
|
|
RewriteEngine on
|
|
RewriteCond %{HTTPS} off
|
|
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
|
|
RewriteCond %{SERVER_NAME} =test.example.net
|
|
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
|
|
</VirtualHost>
|
|
|
|
<VirtualHost *:443>
|
|
ServerName test.example.net
|
|
ServerAdmin webmaster@example.net
|
|
DocumentRoot /var/www/test
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/test-error.log
|
|
CustomLog ${APACHE_LOG_DIR}/test-access.log combined
|
|
|
|
SSLEngine on
|
|
SSLCertificateFile /etc/ssl/private/wildcard.example.net.crt
|
|
SSLCertificateKeyFile /etc/ssl/private/wildcard.example.net.key
|
|
</VirtualHost>
|