forked from linux/WebHosting
fb522a5a89
Signed-off-by: Basil Bruhn <basil.bruhn@psi.ch>
17 lines
389 B
Plaintext
17 lines
389 B
Plaintext
<VirtualHost *:80>
|
|
ServerName rfmwtools-test.psi.ch
|
|
|
|
DocumentRoot /var/www/rfmwtools
|
|
|
|
<Directory "/var/www/rfmwtools/cgi-bin">
|
|
Options +ExecCGI +FollowSymLinks +Indexes
|
|
AddHandler cgi-script .sh .cgi
|
|
DirectoryIndex rfmwtools.html
|
|
Require all granted
|
|
</Directory>
|
|
|
|
ErrorLog /proc/self/fd/2
|
|
CustomLog /proc/self/fd/1 combined
|
|
</VirtualHost>
|
|
|