Re: [users@httpd] Strange with AllowOverrideList Directive

2016-03-30 Thread Daniel Ruggeri
I'm assuming that compiler optimizations would make both patches "six to one, half dozen to the other" as far as code path followed during the request cycle... but I agree. Fixed in trunk in r1737114 and proposed for backport in 2.4 in STATUS. -- Daniel Ruggeri On 3/30/2016 8:02 AM, Plüm, Rüdig

Re: [users@httpd] Strange with AllowOverrideList Directive

2016-03-30 Thread Daniel Ruggeri
On 3/29/2016 11:41 AM, Kees Nuyt wrote: > Looks like a bug to me. I wouldn't call it a ducumentation bug, > as totally ignoring .htaccess is what one would want to do, > because it (also) has performance advantages. > > As a workaround, you could change the access file name httpd is > looking for,

RE: [users@httpd] Strange with AllowOverrideList Directive

2016-03-30 Thread Plüm , Rüdiger , Vodafone Group
ty_table(opts.override_list) + )) { break; } Regards Rüdiger From: Luca Toscano [mailto:toscano.l...@gmail.com] Sent: Mittwoch, 30. März 2016 14:42 To: users@httpd.apache.org Cc: d...@httpd.apache.org Subject: Re: [users@httpd] Str

Re: [users@httpd] Strange with AllowOverrideList Directive

2016-03-30 Thread Luca Toscano
Hi again! > +dev@ to get their opinion! Bug in documentation or small fix required? > (or > > me missing something?) > https://bz.apache.org/bugzilla/show_bug.cgi?id=58528 seems to be very similar and a patch is attached. We can follow up on it adding a use case or just openinig a new one. Thank

Re: [users@httpd] Strange with AllowOverrideList Directive

2016-03-30 Thread Виталий Фадеев
also, i you set AllowOverride None and AllowOverrideList None or just AllowOverride None there is still .htaccess reading. I found this by attach strace to apache pid. i.e. strace -e trace=open,read -p 9738 -s 80 -o /root/trace3.txt grep htaccess /root/trace3.txt: open("/var/www/development/.htac

Re: [users@httpd] Strange with AllowOverrideList Directive

2016-03-29 Thread Luca Toscano
[+dev@] Hi! 2016-03-29 11:06 GMT+02:00 Виталий Фадеев : > Hello! > > I trying to completely disable of .htaccess. > I have this in httpd.conf: > > Options FollowSymLinks > AllowOverride None > Require all denied > > > Also, i have this in vhost include file: > > Op

Re: [users@httpd] Strange with AllowOverrideList Directive

2016-03-29 Thread Kees Nuyt
On Tue, 29 Mar 2016 15:06:50 +0600, you wrote: >Hello! > > I trying to completely disable of .htaccess. > I have this in httpd.conf: > >Options FollowSymLinks >AllowOverride None >Require all denied > > > Also, i have this in vhost include file: > >Options FollowSymL

[users@httpd] Strange with AllowOverrideList Directive

2016-03-29 Thread Виталий Фадеев
Hello! I trying to completely disable of .htaccess. I have this in httpd.conf: Options FollowSymLinks AllowOverride None Require all denied Also, i have this in vhost include file: Options FollowSymLinks AllowOverride None AllowOverrideList None Require