Re: [users@httpd] how to suppress hard-coded response body in 302 redirect

2011-08-30 Thread Peter Glasten
Thanks, Nick! mod_asis does not really help, as built-in filters mess with my response (remove content-length: 0 and add default content-type), but at least I now understand better what's going on. Useful site as well - keep working on it! Peter On Mon, Aug 29, 2011 at 8:14 PM, Nick Kew wrote:

Re: [users@httpd] Why does mod_deflate always add the 'Vary' header?

2011-08-30 Thread Eric Covener
> What is the reasoning for adding the 'Vary' header even if mod_deflate > does nothing with the response? The response for that resource may vary based on the Accept-Encoding header, we don't just tell caches it will vary when we happened to have compressed it this particular time. -

[users@httpd] Why does mod_deflate always add the 'Vary' header?

2011-08-30 Thread Michael Spiegle
I was beating my head against a wall for a day about a caching issue, but I think I figured the problem out now. It seems like mod_deflate is adding the 'Vary' header to all responses regardless of whether they were actually compressed or not. Here's a snippet of the HTTP session for a static HTM

[users@httpd] apache + AD auth

2011-08-30 Thread Diego Maciel Gomes
Hello All... I have auth against AD... It was working fine, in a good day, it stops to work, and I have no idea why it doesnt work now... So, Im using windows 2008 R2 for windows and httpd-2.2.3-53 red hat OK? this is my conf inside the virtualhost: AuthBasicProvider ldap Auth

Re: [users@httpd] Password access except localhost

2011-08-30 Thread Josu Lazkano
On Tue, 2011-08-30 at 16:55 +0100, Tom Evans wrote: > On Tue, Aug 30, 2011 at 4:05 PM, Josu Lazkano > wrote: > > Hello, I have a Apache2 server on a Debian Squeeze, I have password > > protected website, but I need to access to the web without user/pass > > just from localhost. > > > > This is m

Re: [users@httpd] Password access except localhost

2011-08-30 Thread Tom Evans
On Tue, Aug 30, 2011 at 4:05 PM, Josu Lazkano wrote: > Hello, I have a Apache2 server on a Debian Squeeze, I have password > protected website, but I need to access to the web without user/pass > just from localhost. > > This is my site configuration: > > VirtualHost *:80> >        ServerAdmin mym

Re: [users@httpd] Which module is affected by the Range header issue?

2011-08-30 Thread Steve Foster
Correction , the static file gives a 206 status code... On Tue, Aug 30, 2011 at 4:14 PM, Steve Foster wrote: > Hi eric, > > yes i have tried it on a static file as well and no issues., obviously the > static file gives a 200 status code back in the logs, but i am still sending > the Range header

Re: [users@httpd] Which module is affected by the Range header issue?

2011-08-30 Thread Steve Foster
Hi eric, yes i have tried it on a static file as well and no issues., obviously the static file gives a 200 status code back in the logs, but i am still sending the Range header as per the kill script. Steve On Tue, Aug 30, 2011 at 3:42 PM, Eric Covener wrote: > > When you changes the resource

[users@httpd] Password access except localhost

2011-08-30 Thread Josu Lazkano
Hello, I have a Apache2 server on a Debian Squeeze, I have password protected website, but I need to access to the web without user/pass just from localhost. This is my site configuration: VirtualHost *:80> ServerAdmin mymail ServerName mydomain DocumentRoot /var/www/mysit

Re: [users@httpd] Which module is affected by the Range header issue?

2011-08-30 Thread Eric Covener
On Tue, Aug 30, 2011 at 10:31 AM, Steve Foster wrote: > > On Tue, Aug 30, 2011 at 3:18 PM, Eric Covener wrote: >> >> >> It's tuff baked into the core binary,  httpd.  Note that many dynamic >> responses can't be satisfied as range requests, so maybe your "/" is >> such a response. > > Hi eric, >

Re: [users@httpd] Which module is affected by the Range header issue?

2011-08-30 Thread Steve Foster
On Tue, Aug 30, 2011 at 3:18 PM, Eric Covener wrote: > > > It's tuff baked into the core binary, httpd. Note that many dynamic > responses can't be satisfied as range requests, so maybe your "/" is > such a response. > Hi eric, sorry i was referring to the compiled-in modules, e.g: Compiled i

Re: [users@httpd] Which module is affected by the Range header issue?

2011-08-30 Thread Eric Covener
On Tue, Aug 30, 2011 at 9:06 AM, Steve Foster wrote: > hi there, > > I have multiple versions of Apache, all built with minimal inclusions of > modules in the core binary , they don't exhibit the memory consumption issue > when attacked with the killapache script, they all run happily for hours >

[users@httpd] Which module is affected by the Range header issue?

2011-08-30 Thread Steve Foster
hi there, I have multiple versions of Apache, all built with minimal inclusions of modules in the core binary , they don't exhibit the memory consumption issue when attacked with the killapache script, they all run happily for hours with no resource issues. Does anyone know which particular modul

Re: [users@httpd] logging from custom module ubuntu apache

2011-08-30 Thread Simone Caruso
> I have LogLevel debug set in module > config. LogLevel is a per-server/per-virtualhost configuration not a per-module one. -- Simone Caruso IT Consultant - The official User-To-User support forum of the Apache HTTP Server Pro

Re: [users@httpd] mod_proxy_http changes 46x status code to 500

2011-08-30 Thread Cristina Tilab
Hi Nick, thanks but ProxyErrorOverride param doesn't solve the problem. Default is off, if I turn it on the error code is still changed to 500 and moreover the original body response is changed to the standard Apache body message of the Server Internal Error status. On 8/30/11, Nick Kew wrote: >

Re: [users@httpd] Datase as configuration backend?

2011-08-30 Thread Jan-Hendrik Palic
Hi On 30.08.2011 10:22, Nick Kew wrote: On 30 Aug 2011, at 09:14, Jan-Hendrik Palic wrote: Hi, I am looking for saving apache's vhost configuration into a database. As I saw, that nginx have modules get configuration informations from > Postgre SQL Databases, I wonder if there some solutio

Re: [users@httpd] mod_proxy_http changes 46x status code to 500

2011-08-30 Thread Nick Kew
On 30 Aug 2011, at 09:17, Cristina Tilab wrote: > How can I configure Apache 2.2 to preserve the original status code > returned by my back-end web application? ProxyErrorOverride -- Nick Kew - The official User-To-User suppo

Re: [users@httpd] Datase as configuration backend?

2011-08-30 Thread Nick Kew
On 30 Aug 2011, at 09:14, Jan-Hendrik Palic wrote: > Hi, > > I am looking for saving apache's vhost configuration into a database. As I > saw, that nginx have modules get configuration informations from Postgre SQL > Databases, I wonder if there some solutions to do it with apache 2.x.y, too?

[users@httpd] mod_proxy_http changes 46x status code to 500

2011-08-30 Thread Cristina Tilab
Hallo all, in a reverse proxy configuration with Apache 2.2, if a JSP returns a http status code out of the standard ones (for example a '460' status code for a specific REST error I want to return to the client), the Apache proxy returns instead a '500 Internal Server Error', while the response b

[users@httpd] Datase as configuration backend?

2011-08-30 Thread Jan-Hendrik Palic
Hi, I am looking for saving apache's vhost configuration into a database. As I saw, that nginx have modules get configuration informations from Postgre SQL Databases, I wonder if there some solutions to do it with apache 2.x.y, too? Thanks in advance. Jan --