Re: Dynamic httpd.conf file using mod_perl...

2001-04-17 Thread Simon Rosenthal
At 04:16 AM 4/17/01, Ask Bjoern Hansen wrote: >On Mon, 16 Apr 2001, Jim Winstead wrote: > >[...] > > you would have to do a "run config template expander && HUP" instead > > of just doing a HUP of the apache parent process, but that doesn't > > seem like a big deal to me. > >And it has the big adv

Re: Dynamic httpd.conf file using mod_perl...

2001-04-17 Thread Ask Bjoern Hansen
On Mon, 16 Apr 2001, Jim Winstead wrote: [...] > you would have to do a "run config template expander && HUP" instead > of just doing a HUP of the apache parent process, but that doesn't > seem like a big deal to me. And it has the big advantage of also working with httpd's without mod_perl.

RE: Dynamic httpd.conf file using mod_perl...

2001-04-16 Thread Brian
Thanks all for the suggestions and idea provoking chatter. I appreciate. I also much apologize as I didn't fully comprehend your first suggestion Perrin. Simple mind lapse caused by a lack of sleep and not enough caffeine. :o) But, you are right about the DB being down. A cache is a must in

Re: Dynamic httpd.conf file using mod_perl...

2001-04-16 Thread Perrin Harkins
> > It might be easier and more bulletproof to build the conf file > > off-line with > > a simple perl script and a templating tool. We did this with Template > > Toolkit and it worked well. > > - Perrin > > That would be fine and dandy, but it's not exactly what I'm going after. > Currently if I

Re: Dynamic httpd.conf file using mod_perl...

2001-04-16 Thread ___cliff rayman___
checkout the following link: http://www.geocrawler.com/archives/3/182/2000/3/0/3377287/ the search engine at: http://www.geocrawler.com/lists/3/Web/182/0/ is your friend. -- ___cliff [EMAIL PROTECTED]http://www.genwax.com/ Brian wrote: > It's all written, only problem is the mod_rewrite direc

Re: Dynamic httpd.conf file using mod_perl...

2001-04-16 Thread Jim Winstead
On Mon, Apr 16, 2001 at 07:37:32PM -0400, Brian wrote: > > > it seems to me you're conflating your goal and your means of achieving > > it. > > I don't think I'm conflating the goal and the means. At least I don't see > how I am well, perhaps that wasn't the best way to put it. > > this i

RE: Dynamic httpd.conf file using mod_perl...

2001-04-16 Thread Brian
> it seems to me you're conflating your goal and your means of achieving > it. I don't think I'm conflating the goal and the means. At least I don't see how I am > this is certainly possible by generating your configuration files > using a perl script, outside of using mod_perl. Aaah, but

Re: Dynamic httpd.conf file using mod_perl...

2001-04-16 Thread Jim Winstead
On Mon, Apr 16, 2001 at 07:12:23PM -0400, Brian wrote: > > It might be easier and more bulletproof to build the conf file > > off-line with > > a simple perl script and a templating tool. We did this with Template > > Toolkit and it worked well. > > - Perrin > > That would be fine and dandy, but

RE: Dynamic httpd.conf file using mod_perl...

2001-04-16 Thread Brian
> It might be easier and more bulletproof to build the conf file > off-line with > a simple perl script and a templating tool. We did this with Template > Toolkit and it worked well. > - Perrin That would be fine and dandy, but it's not exactly what I'm going after. Currently if I want to make a

Re: Dynamic httpd.conf file using mod_perl...

2001-04-16 Thread Perrin Harkins
> What I'm trying to do is have apache build the httpd.conf > file dynamically when it starts from a MySQL database. It might be easier and more bulletproof to build the conf file off-line with a simple perl script and a templating tool. We did this with Template Toolkit and it worked well. - Pe

Dynamic httpd.conf file using mod_perl...

2001-04-16 Thread Brian
I work for a small domain hosting company, and we currently host a few hundred domains. What I'm trying to do is have apache build the httpd.conf file dynamically when it starts from a MySQL database. Easy enough. Got most of it working, the only thing I'm running into is mod_rewrite problems.