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