RE: [EMAIL PROTECTED] how to re-read the configuration without restarting apache

2007-12-20 Thread Axel-Stephane SMORGRAV
users@httpd.apache.org Objet : [EMAIL PROTECTED] how to re-read the configuration without restarting apache hello, I need to add these 2 lines to my conf file: RewriteEngine On RewriteRule ^/(OpenObject.*) http://server2:9000/$1 the http service is critical and cannot kill sessions. Is there a way to reloa

Re: [EMAIL PROTECTED] how to re-read the configuration without restarting apache

2007-12-20 Thread Melanie Pfefer
thanks. ___ Yahoo! Answers - Got a question? Someone out there knows the answer. Try it now. http://uk.answers.yahoo.com/ - The official User-To-User support forum o

Re: [EMAIL PROTECTED] how to re-read the configuration without restarting apache

2007-12-20 Thread Christian Folini
On Thu, Dec 20, 2007 at 11:40:02AM +, Melanie Pfefer wrote: > the http service is critical and cannot kill sessions. > Is there a way to reload the configuration without > restarting apache? apachectl -h Usage: /data/custom-apaches/apache-2.0.61/bin/httpd \ [-D name] [-d directory] [-f file

Re: [EMAIL PROTECTED] how to re-read the configuration without restarting apache

2007-12-20 Thread Severin Gehwolf
> I need to add these 2 lines to my conf file: > > RewriteEngine On > RewriteRule ^/(OpenObject.*) http://server2:9000/$1 Melanie, you should alter the latter line (above) to RewriteRule ^/(OpenObject.*) http://server2:9000/$1 [R=301,L] This way, browsers are able to cache the request (R=301) a

Re: [EMAIL PROTECTED] how to re-read the configuration without restarting apache

2007-12-20 Thread Neil A. Hillard
Hi, Melanie Pfefer wrote: > hello, > > I need to add these 2 lines to my conf file: > > RewriteEngine On > RewriteRule ^/(OpenObject.*) http://server2:9000/$1 > > > the http service is critical and cannot kill sessions. > Is there a way to reload the configuration without > restarting apache?

[EMAIL PROTECTED] how to re-read the configuration without restarting apache

2007-12-20 Thread Melanie Pfefer
hello, I need to add these 2 lines to my conf file: RewriteEngine On RewriteRule ^/(OpenObject.*) http://server2:9000/$1 the http service is critical and cannot kill sessions. Is there a way to reload the configuration without restarting apache? thanks.