[EMAIL PROTECTED] Request parameter with Apache server

2008-06-25 Thread Samir Ghodasara
Hi , i am new user of apache server and currently i am using apache for serving the video file. Apache 2.2.4 Suse linux Enterprise 10.0 worker mpm module. but now i wanted to read request parameter and header and want to store in mysql database. I am really confuse which module/perl i need to u

[EMAIL PROTECTED] ab, keep-alive and chunked response

2008-06-25 Thread Andrew Gaydenko
Is ApacheBench intended to work with (simultaneous) persistent connection and chunked response? -- View this message in context: http://www.nabble.com/ab%2C-keep-alive-and-chunked-response-tp18122732p18122732.html Sent from the Apache HTTP Server - Users mailing list archive at Nabble.com. ---

[EMAIL PROTECTED] vhost sanity check..

2008-06-25 Thread Nino Saturnino Martinez Vazquez Wael
I have this in my vhost, now I would expect stuff comming in from exerciselog.eu to have an header with "exerciselog.eu" as content and it does, however for the traningslog.dk it contains the same ("exerciselog.eu"), so whats wrong? : ServerName exerciselog.eu ProxyPreserveHost Off ServerAlia

[EMAIL PROTECTED] Performance issues with mod_jk

2008-06-25 Thread Mohit Anchlia
We are seeing performance issues with mod_jk. It degrades to almost 70% as compared to when we directly send the traffic to out app server. ANy suggestions to track down the problem. Here is the worker.properties file: worker.list=status,tc worker.tc.type=lb worker.tc.balanced_workers=app3,app4

[EMAIL PROTECTED] SSL hardware accelerator

2008-06-25 Thread Jose Adriano Baltieri
Hello ! I'm using Apache on W2K with OpenSSL and , we're looking for a SSL accelerator card (hardware). Does anyone here uses some product to suggest us ? Something affordable ? Thanks in advance ! -- Obrigado, --

[EMAIL PROTECTED] Help on proxy balancer

2008-06-25 Thread Arnab Ganguly
Hi All, Following configuration I have kept. ProxyPass /balancer-manager ! ProxyPass / balancer://mycluster/ stickysession=BALANCEID nofailover=On ProxyPassReverse / http://10.146.175.236:81/ ProxyPassReverse / http://10.146.161.223:82/ BalancerMember htt

[EMAIL PROTECTED] Chunked Encoding

2008-06-25 Thread Lionel Fairon
Hi Group, I've a problem with a third party agent running on apache 2.2.6 (authorization agent). I'm then trying to understand exactly what is the normal behavior of apache running as a reverse proxy : When the user sen a POST with large amount of data (several Mb) 1. The client opents tcp (

[EMAIL PROTECTED] Apache SSL certificate verification

2008-06-25 Thread Milo Thurston
I've got a setup where I need to control https access to several Linux servers, and so I've generated my own CA certificate and users have certificates signed against this. I've set up Apache on these servers to access my certificate: DocumentRoot /data # self-signed server certi

Re: [EMAIL PROTECTED] What is apache compiled with now?

2008-06-25 Thread John Hicks
Jay Why wrote: I want to recompile apache. What command can I run to see what configure command I would need to run to get back the same settings for Apache. -- Jay Why From reading the httpd man page, I see there is a -l directive: -l Output a list of modules compiled into the server.

Re: [EMAIL PROTECTED] seperate vhost files for each domain

2008-06-25 Thread John Hicks
Agnello George wrote: Hi I would just like to know if it would be a good good option to have separate vhost fies for each domain, this would make editing the files ( through shell scripts much easier ). But my only concern here is would Apache be overloaded by reading multiple vhost files to illu

RE: [EMAIL PROTECTED] What is apache compiled with now?

2008-06-25 Thread Jorge Medina
a) Identify what modules you need b) Then just follow the instructions in the manual at http://httpd.apache.org/docs/2.2/install.html From: Jay Why [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 25, 2008 8:48 AM To: users@httpd.apache.org Subj

Re: [EMAIL PROTECTED] seperate vhost files for each domain

2008-06-25 Thread Scott Courtney
On Wed, 2008-06-25 at 11:26 +0200, Martin Barry wrote: > Include /etc/apache2/sites-enabled/ > > which graps all files in that directory in alphabetical order. I really like this configuration method, and have recently migrated my non-Debian servers to use the same style even though it's not the

Re: [EMAIL PROTECTED] What is apache compiled with now?

2008-06-25 Thread Joshua Slive
On Wed, Jun 25, 2008 at 8:47 AM, Jay Why <[EMAIL PROTECTED]> wrote: > I want to recompile apache. What command can I run to see what configure > command I would need to run to get back the same settings for Apache. In the build/ directory of the installed server there should be a file called confi

[EMAIL PROTECTED] What is apache compiled with now?

2008-06-25 Thread Jay Why
I want to recompile apache. What command can I run to see what configure command I would need to run to get back the same settings for Apache. -- Jay Why

[EMAIL PROTECTED] Re: Apache/2.2.9, Windows XP/Vista, Relative paths do work, but why?

2008-06-25 Thread ota mares
I found out that all paths except the directory directives are relative to the provided document root. The directory directive paths are all relative to the current execution path which is set by the bat file to the same directory as where the bat is stored. The START CMD Command (http://www.ss64.

RE: [EMAIL PROTECTED] Unabling Chunked encoding in Apache

2008-06-25 Thread Anand Kulkarni
Hi, I have tried for Apache 2.2 as well but it did not work. You may give me solution for any Apache version. -Anand -Original Message- From: Nick Kew [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 25, 2008 4:39 PM To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] Unabling Ch

Re: [EMAIL PROTECTED] Unabling Chunked encoding in Apache

2008-06-25 Thread Nick Kew
On Wed, 25 Jun 2008 16:37:20 +0530 "Anand Kulkarni" <[EMAIL PROTECTED]> wrote: > Hi, > > I have also seen about chunk data at > http://httpd.apache.org/docs/2.2/mod/mod_proxy.html Documents for 2.2. > For Apache 2.0.63, inside httpd.conf file I set the environment: don't necessarily apply to 2

RE: [EMAIL PROTECTED] Unabling Chunked encoding in Apache

2008-06-25 Thread Anand Kulkarni
Hi, I got a desktop client application that sends HTTP request to Apache using HTTP tunneling. See the sample code at: http://java.sun.com/j2se/1.5.0/docs/guide/security/jsse/samples/sockets/ client/SSLSocketClientWithTunneling.java The data is sent using POST method (I tried for GET as well).

RE: [EMAIL PROTECTED] Unabling Chunked encoding in Apache

2008-06-25 Thread Anand Kulkarni
Hi, I have also seen about chunk data at http://httpd.apache.org/docs/2.2/mod/mod_proxy.html Refer to the section "Request Bodies" & "Reverse Proxy Request Headers". For Apache 2.0.63, inside httpd.conf file I set the environment: SetEnv proxy-sendchunked 1 But it did not work. Have somebody

Re: [EMAIL PROTECTED] Unabling Chunked encoding in Apache

2008-06-25 Thread André Warnier
Sorry... I did not read the OP's question well enough, and failed to click that he was talking about sending large chunks of data from client TO Apache server. My mistake, I apologise. To the original poster : Could you explain a little bit about the client who is sending the data ? - what k

Re: [EMAIL PROTECTED] Unabling Chunked encoding in Apache

2008-06-25 Thread André Warnier
I could swear that I saw something about that in the mod_proxy documentation on the Apache site. Anand Kulkarni wrote: Hi, I want to send large amount of data from client to server through Apache. hence, I am using Apache as proxy using the standard mod_proxy module. Client does not know t

[EMAIL PROTECTED] Unabling Chunked encoding in Apache

2008-06-25 Thread Anand Kulkarni
Hi, I want to send large amount of data from client to server through Apache. hence, I am using Apache as proxy using the standard mod_proxy module. Client does not know the length of data to be sent and hence can not set the content length value. So, how can I send this large data without kn

[EMAIL PROTECTED] Apache LDAP authentication with FallBack

2008-06-25 Thread Alessandro Zatti
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I'm authenticating my Protected Area (Basic autentication type) via ActiveDirectory (with authnz_ldap_module). How can I setup my autencation with local file user only when I can't contact my Domain Controller? Now I resolve the issue with two AuthBasi

RE: [EMAIL PROTECTED] Forbidden

2008-06-25 Thread john.swilting
Le mardi 24 juin 2008 à 14:20 +0200, john.swilting a écrit : > I am coming to it > http://www.renelacroute.fr/httpd.conf > > > http://www.fakessh.eu/index.php http://www.fakessh.eu/phpinfo.php > > Launches Download > and I intend to use Perl and php ie .php .pl > > Le lundi 23 juin 2008 à 21:52

Re: [EMAIL PROTECTED] seperate vhost files for each domain

2008-06-25 Thread Martin Barry
$quoted_author = "Agnello George" ; > > I would just like to know if it would be a good good option to have > separate vhost fies for each domain, this would make editing the files > ( through shell scripts much easier ). But my only concern here is > would Apache be overloaded by reading multiple

[EMAIL PROTECTED] seperate vhost files for each domain

2008-06-25 Thread Agnello George
Hi I would just like to know if it would be a good good option to have separate vhost fies for each domain, this would make editing the files ( through shell scripts much easier ). But my only concern here is would Apache be overloaded by reading multiple vhost files to illustrate i would like to h