Files
WebHosting/apache/conf/srem.conf
T
bruhn_b b1df7508de includes and shtml
Signed-off-by: Basil Bruhn <basil.bruhn@psi.ch>
2025-11-25 10:34:55 +01:00

23 lines
537 B
Plaintext

<VirtualHost *:80>
ServerName srem-test.psi.ch
DocumentRoot /var/www/srem
# Allow CGI everywhere if needed
Options +ExecCGI +Includes
AddHandler cgi-script .pl .cgi .shtml
<Directory "/var/www/srem">
Options +ExecCGI +Includes
AllowOverride None
Require all granted
</Directory>
# Explicit CGI directories
ScriptAlias /cgibin/ /var/www/srem/cgibin/
<Directory "/var/www/srem/cgibin">
Options +ExecCGI
Require all granted
</Directory>
</VirtualHost>