in reply to Apache mod_perl configuration

What happens if you change <Location> to <Directory>?

I always thought that <Location> was not to be used for physically existing directories.

CountZero

"If you have four groups working on a compiler, you'll get a 4-pass compiler." - Conway's Law

Replies are listed 'Best First'.
Re^2: Apache mod_perl configuration
by perrin (Chancellor) on Nov 21, 2004 at 22:07 UTC
    Nope, you've got it backwards. Locations do not have to be real paths.
      That's exactly what I said!

      CountZero

      "If you have four groups working on a compiler, you'll get a 4-pass compiler." - Conway's Law

        Oh, sorry, you are correct. However, location blocks work fine for what this person is trying to do. It just means that the setting are applied to a particular URL pattern rather than a particular directory path.
Re^2: Apache mod_perl configuration
by jdalbec (Deacon) on Nov 22, 2004 at 02:58 UTC
    I think the fact that the <Location> is aliased may be a problem. Try <Directory /home/teun/mod-perl> instead.

    Update: also try adding an Allow from all line to the <Directory> block.