forked from linux/WebHosting
29 lines
708 B
Plaintext
29 lines
708 B
Plaintext
<VirtualHost *:80>
|
|
ServerName fluid-eos-test.psi.ch
|
|
DocumentRoot /var/www/fluid-eos
|
|
|
|
# Allow CGI everywhere if needed
|
|
Options +ExecCGI
|
|
AddHandler cgi-script .pl .cgi .x
|
|
|
|
<Directory "/var/www/fluid-eos">
|
|
Options +ExecCGI
|
|
AllowOverride None
|
|
Require all granted
|
|
</Directory>
|
|
|
|
# Explicit CGI directories
|
|
ScriptAlias /cgi-bin/ /var/www/fluid-eos/cgi-bin/
|
|
<Directory "/var/www/fluid-eos/cgi-bin">
|
|
Options +ExecCGI
|
|
Require all granted
|
|
</Directory>
|
|
|
|
ScriptAlias /cgibin/ /var/www/fluid-eos/cgibin/
|
|
<Directory "/var/www/fluid-eos/cgibin">
|
|
Options +ExecCGI
|
|
Require all granted
|
|
</Directory>
|
|
</VirtualHost>
|
|
|