Re: [users@httpd] root process running Apache

2013-04-12 Thread Torsten Förtsch
On 12/04/13 18:38, wejii wrote: I read several times don't run apache as root. ps -ef gives me the following: root 1448 1 0 Apr11 ?00:00:04 /usr/sbin/apache2 -k start www-data 1712 1448 0 Apr11 ?00:00:00 /usr/sbin/apache2 -k start www-data 1713 1448 0 Apr11 ?

Re: [users@httpd] Getting the request URL details using PerlOutputFilterHandler

2012-06-25 Thread Torsten Förtsch
On 06/25/2012 03:57 PM, Rommel Sharma wrote: I am using PerlOutputFilterHandler. I need to customize/filter the output based on where (for which resource) the request came from. How can I find the URL from where the request was made? sub filter { my ($f, $bb)=@_; my $r=$f-r;

[users@httpd] How to decide about shared memory

2011-10-07 Thread Torsten Förtsch
Hi, during APR configuring a decision is made what type of shared memory to use. Is there a way to influence this decision in favor for a certain kind via environment variables or command line options? Thanks, Torsten Förtsch -- Need professional modperl support? Hire me! (http

Re: [users@httpd] HTTPS Forms

2011-06-24 Thread Torsten Förtsch
require /Location If so have a look at http://httpd.apache.org/docs/2.2/mod/mod_ssl.html#sslrenegbuffersize Torsten Förtsch -- Need professional modperl support? Hire me! (http://foertsch.name) Like fantasy? http://kabatinte.net

Re: [users@httpd] apache2 or mod_perl2 oddball error

2011-06-16 Thread Torsten Förtsch
FORBIDDEN NOT_FOUND $ perl -le 'use Apache2::Const -compile=qw/:common/; print for keys %{Apache2::Const::}' DECLINED compile AUTH_REQUIRED REDIRECT OK DONE bootstrap import ISA BEGIN SERVER_ERROR VERSION FORBIDDEN NOT_FOUND Torsten Förtsch -- Need professional modperl support? Hire me! (http

[users@httpd] configure apache with --enable-modules=all --enable-mods-shared=all_but_...

2011-03-03 Thread Torsten Förtsch
Hi, is it possible to configure apache with --enable-modules=all and --enable-mods-shared='all but a few exceptions' That means how do I say configure to enable almost all modules as shared but with a few exceptions? Thanks, Torsten Förtsch -- Need professional modperl support? Hire me

Re: [users@httpd] configure apache with --enable-modules=all --enable-mods-shared=all_but_...

2011-03-03 Thread Torsten Förtsch
-shared=log_config logio Torsten Förtsch -- Need professional modperl support? Hire me! (http://foertsch.name) Like fantasy? http://kabatinte.net - The official User-To-User support forum of the Apache HTTP Server Project. See

Re: [us...@httpd] Content Length Vs Chunked Encoding

2010-11-26 Thread Torsten Förtsch
of mod_perl code in you httpd.conf between perl and /perl that implements a simple filter that removes the cl header and itself. But that requires mod_perl to be present in your config. Perhaps mod_headers can do that too. Is that programming or configuration? Torsten Förtsch -- Need professional