blob: 03f93ad2e5ec7a8a2c3e808a3adada3540511f3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
</Directory>
RewriteEngine on
RewriteRule "^/testresults/.+/images/(.*)" "/images/$1" [PT]
LogLevel warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
|