Re: [users@httpd] How to inform apache that a particular text file needs to be downloaded instead of showing on browser itself

2011-01-26 Thread Andrew Punch
Hi, You can configure apache to send back a content-disposition header for your file. e.g. Content-Disposition: attachment; filename=fname.ext Set an environment variable based on the filename (see SetEnvIf in the mod_setenvif module) and send the above content-disposition header using mod_head

Re: [users@httpd] Graceful restarts and keepalives

2011-01-24 Thread Andrew Punch
PM, Andrew Punch > wrote: > > Hi, > > > > During the week I hit the situation described in 41743. A child process > > is connected to a client using a keepalive connection. A graceful > > restart (SIGUSR1) is issued. If the MaxKeepAliveRequests is high and the &g

[users@httpd] Graceful restarts and keepalives

2011-01-24 Thread Andrew Punch
Hi, During the week I hit the situation described in 41743. A child process is connected to a client using a keepalive connection. A graceful restart (SIGUSR1) is issued. If the MaxKeepAliveRequests is high and the client is chatty the child process will not exit until the client disconnects. Thi