forked from linux/WebHosting
16 lines
341 B
Plaintext
16 lines
341 B
Plaintext
<VirtualHost *:80>
|
|
ServerName rfmwtools-test.psi.ch
|
|
|
|
DocumentRoot /var/www/rfmwtools
|
|
|
|
<Directory "/var/www/rfmwtools">
|
|
Options +ExecCGI +FollowSymLinks
|
|
AddHandler cgi-script .sh .cgi
|
|
Require all granted
|
|
</Directory>
|
|
|
|
ErrorLog /proc/self/fd/2
|
|
CustomLog /proc/self/fd/1 combined
|
|
</VirtualHost>
|
|
|