fluid eos

Signed-off-by: Basil Bruhn <basil.bruhn@psi.ch>
This commit is contained in:
2025-11-24 11:00:11 +01:00
parent 68d2cea3d5
commit cc30a18c40
4 changed files with 60 additions and 37 deletions
+28
View File
@@ -0,0 +1,28 @@
<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>