File w3perl.conf.default of Package w3perl
# Example configuration for a w3perl repository
#
# As default server
# put the string W3PERL in /etc/sysconfig/apache2 APACHE_SERVER_FLAGS
# to enable the URL
# http://localhost/w3perl
#
# As vhost
# If you want to use w3perl in one vhost add
# Include /etc/apache2/vhosts.d/conf.d/w3perl.conf
# to the vhost in the vhost.conf file
# put the string W3PERLVHOST in /etc/sysconfig/apache2 APACHE_SERVER_FLAGS
# to enable the URL
# http://vhost/w3perl
<IfDefine W3PERL>
# apache can serve the static files directly
Alias /w3perl "/srv/w3perl/"
<Directory /srv/w3perl/>
Options SymLinksifOwnerMatch
AllowOverride AuthConfig Limit
Order allow,deny
Allow from all
</Directory>
# ScriptAlias: This controls which directories contain server scripts.
# ScriptAliases are essentially the same as Aliases, except that
# documents in the realname directory are treated as applications and
# run by the server when requested rather than as documents sent to the client.
# The same rules about trailing "/" apply to ScriptAlias directives as to
# Alias.
#
#ScriptAlias /cgi-bin/w3perl "/srv/cgi-bin/w3perl/"
# "/srv/www/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#
#<Directory "/srv/cgi-bin/w3perl">
# AllowOverride None
# Options +ExecCGI -Includes
# Order allow,deny
# Allow from all
#</Directory>
#
</IfDefine>