Re: How to run a secure mod_perl ?

1999-11-25 Thread Martin A. Langhoff
I'd like to thank you all. I've been enlightened by this thread. Apparently mod_perl/apache _can_ be crashed, but then only the specific httpd child process will crash. Or did I get it wrong? On the other hand, it _is_ possible to use a mod_perl/apache server on a high port using mod_r

Re: How to run a secure mod_perl ?

1999-11-24 Thread Stas Bekman
Also see: http://perl.apache.org/guide/multiuser.html#ISPs_providing_mod_perl_services > > Don't know the answer to your problem, but I wonder how much $$$ you're > spending to be told you can't do this? Maybe it's time to find a new ISP? > > On Wed, 24 Nov 1999, Martin A. Langhoff wrote: >

RE: How to run a secure mod_perl ?

1999-11-24 Thread Rudy Rucker
es. Make him work for that money or find > another provider. > > > -- > > From: Aaron Turner[SMTP:[EMAIL PROTECTED]] > > Sent: Wednesday, November 24, 1999 1:34 PM > > Subject:Re: How to run a secure mod_perl ? > > > > > &

Re: How to run a secure mod_perl ?

1999-11-24 Thread Cliff Rayman
I had an embperl crashing problem. With the help of the developer is has been rectified. It took down individual processes only. I have never had the apache core serving daemon (whatever it is called) crash under mod_perl. cliff rayman genwax.com Matt Sergeant wrote: > On Wed, 24 Nov 1999, Mar

Re: How to run a secure mod_perl ?

1999-11-24 Thread Gunther Birznieks
It is extraordinarily easy to make persistnt perl engines core dump especailly if youare using 3rd party binary compiled modules that have their own subtle bugs. And extraordinarily annoying to troubleshoot. Either that or I have been very "lucky". ;) However, with that said, it's generally not

Re: How to run a secure mod_perl ?

1999-11-24 Thread Matt Sergeant
On Wed, 24 Nov 1999, Martin A. Langhoff wrote: > hi mod_perl gurus, > > I'm currently in dire problems (read sh*t): > > - In one week my Embperl powerd site debuts. > > - Just now, my webmaster tells me that I can't use Embperl _nor_ > ePerl. Previously he had told me to use

Re: How to run a secure mod_perl ?

1999-11-24 Thread Eric L. Brine
> - He claims that he cannot allow me to run anything under > mod_perl (and derivatives as Embperl) because mod_perl brings Apache > down when it crashes. The typical mod_perl setup is a lightwieght front-end server which redirects mod_perl request to a second mod_perl enabled server. This is do

RE: How to run a secure mod_perl ?

1999-11-24 Thread Tubbs, Derric L
t money or find another provider. > -- > From: Aaron Turner[SMTP:[EMAIL PROTECTED]] > Sent: Wednesday, November 24, 1999 1:34 PM > To: Martin A. Langhoff > Cc: mod-perl Mailing List > Subject: Re: How to run a secure mod_perl ? > > > Do

Re: How to run a secure mod_perl ?

1999-11-24 Thread Ken Williams
[EMAIL PROTECTED] (Martin A. Langhoff) wrote: >- Is there a way to configure mod_perl so that it does not crash >apache down? Or maybe it never does and he doesn't know? Run another Apache server of your own on another port, and use mod_rewrite to pass mod_perl requests through to your se

Re: How to run a secure mod_perl ?

1999-11-24 Thread Cliff Rayman
perhaps you can run your own apache server with mod_perl on a high-port on the loopback interface. he can then proxy all requests to your server using the methods as spelled out in the mod_perl guide. if you crash your own server - it is not going to effect his server at all. just a thought, cl

Re: How to run a secure mod_perl ?

1999-11-24 Thread Aaron Turner
Don't know the answer to your problem, but I wonder how much $$$ you're spending to be told you can't do this? Maybe it's time to find a new ISP? On Wed, 24 Nov 1999, Martin A. Langhoff wrote: > hi mod_perl gurus, > > I'm currently in dire problems (read sh*t): > > - In one week