Alias /docis/lib /home/adocis/docis/lib
<Directory /home/adocis/docis/lib>
Options Indexes
AllowOverride None
Order allow,deny
Allow from all
</Directory>
Alias /docis /home/adocis/docis/html
<Directory /home/adocis/docis/html>
Options Indexes
AllowOverride None
Order allow,deny
Allow from all
</Directory>
Alias /docis_tmp /home/adocis/tmp/docis
<Directory /home/adocis/tmp/docis>
Options Indexes
AllowOverride None
Order allow,deny
Allow from all
</Directory>
Alias /strip/docis /home/adocis/docis/
<Directory /home/adocis/docis/>
Options Indexes
AllowOverride None
Order allow,deny
Allow from all
</Directory>
<Directory /home/adocis/docis/rclis>
AllowOverride FileInfo AuthConfig Limit
Options +Includes
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
<Limit GET POST OPTIONS PROPFIND>
Order allow,deny
Allow from all
</Limit>
<Limit PUT DELETE PATCH PROPPATCH MKCOL COPY MOVE LOCK UNLOCK>
Order deny,allow
Deny from all
</Limit>
</Directory>
## If the perl module is installed, this will be enabled.
<IfModule mod_perl.c>
PerlRequire /home/adocis/docis/perl/mod_perl_start
# Page.pm is a library, not required to be listed
# here
<Location /docis/search>
DefaultType text/html
SetHandler perl-script
PerlResponseHandler Docis::Search
Options +ExecCGI
</Location>
<Location /docis/test>
DefaultType text/html
SetHandler perl-script
PerlResponseHandler Docis::Test
Options +ExecCGI
</Location>
<Location /docis/show>
DefaultType text/html
SetHandler perl-script
PerlResponseHandler Docis::Show
Options +ExecCGI
</Location>
<Location /docis/download>
DefaultType text/html
SetHandler perl-script
PerlResponseHandler Docis::Download
Options +ExecCGI
</Location>
</IfModule>