We could later extend the stylesheet more or even add something similar to actual templates (e.g. a shared header/footer).
17 lines
499 B
Plaintext
17 lines
499 B
Plaintext
<VirtualHost *:80>
|
|
ServerAdmin webmaster@localhost
|
|
|
|
DocumentRoot /var/www
|
|
<Directory /var/www/>
|
|
Options Indexes FollowSymLinks MultiViews
|
|
</Directory>
|
|
|
|
RewriteEngine on
|
|
RewriteRule "^/testresults/.+/images/(.*)" "/images/$1" [PT]
|
|
RewriteRule "^/testresults/.+/css/(.*)" "/css/$1" [PT]
|
|
|
|
LogLevel warn
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
|
</VirtualHost>
|