| 1 |
geissert |
2405 |
<VirtualHost *:80>
|
| 2 |
|
|
ServerName qa.debian.org
|
| 3 |
|
|
ServerAlias qa2.debian.org
|
| 4 |
|
|
|
| 5 |
|
|
ServerAdmin debian-qa@lists.debian.org
|
| 6 |
|
|
|
| 7 |
|
|
ErrorLog /var/log/apache2/qa.debian.org-error.log
|
| 8 |
|
|
CustomLog /var/log/apache2/qa.debian.org-access.log combined
|
| 9 |
|
|
|
| 10 |
|
|
DocumentRoot /srv/qa.debian.org/web
|
| 11 |
|
|
DirectoryIndex index.html index.php
|
| 12 |
|
|
|
| 13 |
|
|
Alias /data /srv/qa.debian.org/data
|
| 14 |
|
|
|
| 15 |
myon |
2410 |
RewriteEngine on
|
| 16 |
|
|
#RewriteRule ^/watch/sf.php/(.*) /watch/sf.php?project=$1
|
| 17 |
|
|
RewriteRule ^/madison.php /cgi-bin/madison.cgi [PT]
|
| 18 |
geissert |
2405 |
|
| 19 |
|
|
ScriptAlias /cgi-bin/ /srv/qa.debian.org/cgi-bin/
|
| 20 |
|
|
<Directory /srv/qa.debian.org/cgi-bin/>
|
| 21 |
|
|
AllowOverride None
|
| 22 |
|
|
Options ExecCGI
|
| 23 |
|
|
Order allow,deny
|
| 24 |
|
|
Allow from all
|
| 25 |
|
|
</Directory>
|
| 26 |
|
|
|
| 27 |
|
|
<Directory /srv/qa.debian.org/web>
|
| 28 |
|
|
AddHandler fcgid-script .php
|
| 29 |
|
|
FCGIWrapper /srv/qa.debian.org/etc/php-wrapper .php
|
| 30 |
|
|
<Files *.php>
|
| 31 |
|
|
Options ExecCGI
|
| 32 |
|
|
</Files>
|
| 33 |
|
|
</Directory>
|
| 34 |
|
|
|
| 35 |
|
|
<Directory /srv/qa.debian.org/data>
|
| 36 |
|
|
Options Indexes FollowSymLinks
|
| 37 |
|
|
</Directory>
|
| 38 |
|
|
<IfModule mod_userdir.c>
|
| 39 |
|
|
UserDir disabled
|
| 40 |
|
|
</IfModule>
|
| 41 |
|
|
</VirtualHost>
|
| 42 |
|
|
# vim:set syn=apache:
|