I am trying (as a starting test) to replace some apache directives by
mod_perl's syntax, so i can hopefully easily yank in specific perl
functions.
Running apache 2.0.50
Mod_perl 1.99
On a debian sarge machine.
All compiled by hand and no errors during compilation/installation.
included in httpd
On 2004-09-04 19:58:21 +0200, Stas Bekman <[EMAIL PROTECTED]> said:
The proper solution is :
Limit => {
'GET PUT POST DELETE PROPFIND PROPPATCH MKCOL COPY MOVE LOCK
UNLOCK' => {
require => 'valid-user',
Order => 'allow,deny',
Allow => 'from all',
},
I'm quit puzzled here
I use mod_perl to perform some database lookups from my httpd.conf and
build up all directives
and create all vhost's.
That part works ok, apache works with the vhosts like a charm
but always a but... :)
When i use the Apache::PerlSections->dump(); i only see
1;
On 2004-10-28 17:34:23 +0200, "Philippe M. Chiasson"
<[EMAIL PROTECTED]> said:
M.v.Buytene wrote:
I'm quit puzzled here
I use mod_perl to perform some database lookups from my httpd.conf and
build up all directives
and create all vhost's.
That part works ok, apache works with the vhosts like