move fluid to apache

Signed-off-by: Basil Bruhn <basil.bruhn@psi.ch>
This commit is contained in:
2025-11-24 10:33:04 +01:00
parent b6fef42220
commit f2d6ca9c83
3 changed files with 30 additions and 9 deletions
+28
View File
@@ -0,0 +1,28 @@
<VirtualHost *:80>
ServerName fluid-eos-test.psi.ch
DocumentRoot /var/www/html/fluid-eos
# Allow CGI everywhere if needed
Options +ExecCGI
AddHandler cgi-script .pl .cgi .x
<Directory "/var/www/html/fluid-eos">
Options +ExecCGI
AllowOverride None
Require all granted
</Directory>
# Explicit CGI directories
ScriptAlias /cgi-bin/ /var/www/html/fluid-eos/cgi-bin/
<Directory "/var/www/html/fluid-eos/cgi-bin">
Options +ExecCGI
Require all granted
</Directory>
ScriptAlias /cgibin/ /var/www/html/fluid-eos/cgibin/
<Directory "/var/www/html/fluid-eos/cgibin">
Options +ExecCGI
Require all granted
</Directory>
</VirtualHost>