/etc/apache2/conf-available/wims.conf is in wims 1:4.13c~dfsg1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | ###### $startl! ######
#
# If you manually add things concerning WIMS into this configuration file,
# add them BEFORE the 'WIMS definition start' line.
# Otherwise the addition will be erased in next update.
#
AddHandler cgi-script .cgi
ScriptAliasMatch ^/~wims/wims\.(.*) /var/lib/wims/public_html/wims.cgi
ScriptAliasMatch ^/wims/wims\.(.*) /var/lib/wims/public_html/wims.cgi
ScriptAliasMatch ^/~wims/index\.(.*) /var/lib/wims/public_html/wims.cgi
ScriptAliasMatch ^/wims/index\.(.*) /var/lib/wims/public_html/wims.cgi
ScriptAliasMatch ^/~wims/.._(.*).html /var/lib/wims/public_html/wims.cgi
ScriptAliasMatch ^/wims/.._(.*).html /var/lib/wims/public_html/wims.cgi
ScriptAliasMatch ^/~wims/getfile/(.*) /var/lib/wims/public_html/wims.cgi
ScriptAliasMatch ^/wims/getfile/(.*) /var/lib/wims/public_html/wims.cgi
ScriptAlias /wims/....\.cgi /var/lib/wims/public_html/wims.cgi
Alias /wims /var/lib/wims/public_html
Alias /~wims /var/lib/wims/public_html
<Directory /var/lib/wims/public_html>
Options +FollowSymLinks +ExecCGI -Indexes
AllowOverride All
Require all granted
</Directory>
<Directory /var/lib/wims/public_html/modules>
Options +FollowSymLinks
AllowOverride Limit
</Directory>
###### $endl! ######
|