Subversion Repositories PEEPS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
ServerName localhost
2
AddHandler cgi-script .cgi .pl
3
 
4
<Directory /var/www/html>
5
    Options All
6
    AllowOverride All
7
</Directory>
8
 
9
<VirtualHost *:80>
10
    DocumentRoot /var/www/html
11
    CustomLog ${APACHE_LOG_DIR}/access.log combined
12
 
13
    RewriteEngine On
14
    RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI}.pl -f
15
    RewriteRule !\.\w{2,4}$ %{REQUEST_URI}.pl [L]
16
 
17
</VirtualHost>