[users@httpd] require valid-users for location bypasses other unrelated restrictions

2021-03-16 Thread Dennis Jacobfeuerborn
Hi, I trying to understand how the "Require" directive works in non-trivial cases. This is one example: ServerName 127.0.0.1 DocumentRoot "/var/www/html/site" Authtype Basic Authname "site" AuthUserFile /etc/httpd/conf/htpasswd Require valid-user Require all

Re: [users@httpd] Help with wilcards SSL certificates and virtual hosts

2015-03-12 Thread Dennis Jacobfeuerborn
On 12.03.2015 15:51, Quentin CHARRAUT wrote: Hi all, I really need help to understand what I'm doing wrong and how to solve my problems. Let me first explain the situation. We have an Apache webserver (Linux), in front of a Jboss application server which hosts many different

Re: [users@httpd] Apache make fedora go into corner

2014-12-27 Thread Dennis Jacobfeuerborn
In cases like these nmon is a useful tool. It's a top-like tool with the ability to write the stats into a log file for later analysis. It is really nice when you want the basics monitored but not install a full monitoring solution like nagios, zabbix, etc. Regards, Dennis On 27.12.2014 18:03,

Re: [users@httpd] mod_proxy_fcgi + PHP-FPM on Apache 2.4 solution?

2012-03-05 Thread Dennis Jacobfeuerborn
I haven't been able to play with this yet but shouldn't something like this work as well? LocationMatch \.php$ ProxyPass fcgi://127.0.0.1:9000 /LocationMatch Regards, Dennis On 03/05/2012 03:04 PM, Daniel wrote: I have found an alternative method that works nicely, only passes .php files

Re: [users@httpd] No Content-Type header despite DefaultType directive

2011-12-06 Thread Dennis Jacobfeuerborn
On 12/06/2011 11:13 AM, Tom Evans wrote: On Mon, Dec 5, 2011 at 3:08 PM, Dennis Jacobfeuerborn denni...@conversis.de wrote: Hi, I am trying to get Apache to send a file with the filename test that contains html through a filter for the mime type text/html. The problem is that even when I set

Re: [users@httpd] FilterProtocol cache=no not working correctly in 2.3.15?

2011-12-05 Thread Dennis Jacobfeuerborn
On 12/05/2011 04:06 AM, Nick Kew wrote: On 5 Dec 2011, at 02:27, Dennis Jacobfeuerborn wrote: FilterProvider testfilter TESTFILTER %{CONTENT_TYPE} = 'text/html' FilterProtocol testfilter change=yes,cache=no FilterChain testfilter FilterProtocol is slightly half-baked: filter modules should

Re: [users@httpd] FilterProtocol cache=no not working correctly in 2.3.15?

2011-12-05 Thread Dennis Jacobfeuerborn
On 12/05/2011 02:12 PM, Nick Kew wrote: On Mon, 05 Dec 2011 13:11:10 +0100 Dennis Jacobfeuerborndenni...@conversis.de wrote: The filter inserts a header and a footer in the page from two files. I can modify these files and don't see an update when I reload but I *do* see an update when I

Re: [users@httpd] FilterProtocol cache=no not working correctly in 2.3.15?

2011-12-05 Thread Dennis Jacobfeuerborn
On 12/05/2011 03:43 PM, Dennis Jacobfeuerborn wrote: On 12/05/2011 02:12 PM, Nick Kew wrote: On Mon, 05 Dec 2011 13:11:10 +0100 Dennis Jacobfeuerborndenni...@conversis.de wrote: The filter inserts a header and a footer in the page from two files. I can modify these files and don't see

[users@httpd] No Content-Type header despite DefaultType directive

2011-12-05 Thread Dennis Jacobfeuerborn
Hi, I am trying to get Apache to send a file with the filename test that contains html through a filter for the mime type text/html. The problem is that even when I set a DefaultType in .htaccess the response doesn't contain a Content-Type header. The browser actually displays the content as

Re: [users@httpd] FilterProtocol cache=no not working correctly in 2.3.15?

2011-12-05 Thread Dennis Jacobfeuerborn
On 12/05/2011 06:55 PM, Nick Kew wrote: On Mon, 05 Dec 2011 15:56:27 +0100 Dennis Jacobfeuerborndenni...@conversis.de wrote: Just out of interest shouldn't the FilterProtocol directive with cache=no have the same effect as the flag and if I set the flag in the code can I remove the directive

Re: [users@httpd] FilterProtocol cache=no not working correctly in 2.3.15?

2011-12-05 Thread Dennis Jacobfeuerborn
On 12/05/2011 08:56 PM, Nick Kew wrote: On Mon, 05 Dec 2011 20:33:57 +0100 Dennis Jacobfeuerborndenni...@conversis.de wrote: Ok, so here is what I found out so far. Thanks! Looks like we have some useful information here. I'll take a look at the source and see if I can see anything that

[users@httpd] FilterProtocol cache=no not working correctly in 2.3.15?

2011-12-04 Thread Dennis Jacobfeuerborn
Hi, I create an output filter and have it configured like this: FilterProvider testfilter TESTFILTER %{CONTENT_TYPE} = 'text/html' FilterProtocol testfilter change=yes,cache=no FilterChain testfilter The filter itself works fine but the problem is that despite specifying cache=no which

Re: [us...@httpd] Filters not applied with ErrorDocument pages?

2010-12-07 Thread Dennis Jacobfeuerborn
On 12/07/2010 08:25 PM, Joost de Heer wrote: On Mon, December 6, 2010 02:56, Dennis Jacobfeuerborn wrote: I just noticed that when I use ErrorDocument to server custom 404 pages the output filter I defined is not getting used anymore. Is there some special configuration required to make

Re: [us...@httpd] Filters not applied with ErrorDocument pages?

2010-12-06 Thread Dennis Jacobfeuerborn
On 12/06/2010 08:40 PM, Igor Galić wrote: - Dennis Jacobfeuerborndenni...@conversis.de wrote: I just noticed that when I use ErrorDocument to server custom 404 pages the output filter I defined is not getting used anymore. Is there some special configuration required to make the filters

[us...@httpd] Filters not applied with ErrorDocument pages?

2010-12-05 Thread Dennis Jacobfeuerborn
I just noticed that when I use ErrorDocument to server custom 404 pages the output filter I defined is not getting used anymore. Is there some special configuration required to make the filters also work on custom error pages? Regards, Dennis

[us...@httpd] Distributed logging

2010-11-15 Thread Dennis Jacobfeuerborn
Hi, what is the best way to handle the logging of multiple Apache instances? I'm looking for a way to have say 10 Apache servers efficiently log to central location so I can analyze the aggregated log-data there. I've seen mod_log_spread but the last changelog entry is from 2006 so I'm not

Re: [us...@httpd] Forcing custom 404 error page instead of autoindex

2010-11-05 Thread Dennis Jacobfeuerborn
On 11/05/2010 05:08 AM, Eric Covener wrote: On Thu, Nov 4, 2010 at 10:45 PM, Dennis Jacobfeuerborn denni...@conversis.de wrote: ErrorDocument 404 /_disabled/index.html RewriteEngine on RewriteRule !/_disabled/ /_force_404_ The idea was to use the rewrite rule to rewrite any access to a non

Re: [us...@httpd] Certain Pages being served are erroring...

2010-11-05 Thread Dennis Jacobfeuerborn
On 11/05/2010 03:34 PM, Tom Evans wrote: On Fri, Nov 5, 2010 at 1:43 PM, Scott Shippeesship...@scoden.net wrote: I maintain a series of web sites for the fraternal organizations I belong to and recently we published a set of web pages to out server for one of the sites and we are getting:

[us...@httpd] Forcing custom 404 error page instead of autoindex

2010-11-04 Thread Dennis Jacobfeuerborn
Hi, I'm trying to find a way to always generate a 404 error using htaccess when a directory is accessed and with mod_autoindex enabled. That is when I access http://server/directory/ I want to get a 404 error instead of an auto generated index. I tried doing this with a RewriteRule but the

Re: [us...@httpd] Forcing custom 404 error page instead of autoindex

2010-11-04 Thread Dennis Jacobfeuerborn
message The requested URL /_force_404_ was not found on this server. Regards, Dennis On 11/05/2010 03:31 AM, Igor Cicimov wrote: Post the rewrite rule here. Igor On Nov 5, 2010 1:11 PM, Dennis Jacobfeuerborn denni...@conversis.de mailto:denni...@conversis.de wrote: Hi, I'm trying to find a way

[us...@httpd] Lots of Reading request status connections with no IP

2010-10-08 Thread Dennis Jacobfeuerborn
Hi, I just saw the mention of mod_reqtimeout on the dev mailing list and I'm wondering if this would be a good module to deal with a problem I'm seeing. On one of our server I see a ddos where one IP seems to create lots of new connections to Apache which all show up as Reading Request and a