
noel.butler at ausics
Apr 24, 2012, 4:37 AM
Views: 658
Permalink
|
|
Re: "Deny" directives silently ignored in config files
[In reply to]
|
|
On Mon, 2012-04-23 at 09:04 +0200, Matthieu Moy wrote: > Noel Butler <noel.butler [at] ausics> writes: > > > Right, so have you changed it to Directory and does it now work? > > I tried <Directory>, and it did not work. - You definitely have something broken then if Deny does not work in a Directory statement For 2.2... <Directory /> <-- Default for everything on filesystem, which would include /tmp AllowOverride None Order Deny,Allow Deny from all </Directory> <Directory "/var/www/html"> Order Deny,Allow Allow from all </Directory> Which of course has all changed with 2.4, but I wont confuse you with those :)
|