[EMAIL PROTECTED] http header parsing

2008-07-21 Thread apache a
has anyone found a scenarion, wherein based on a condition, the http header will NOT be parsed at all... what the steps involved, after an http request reaches the server,

[EMAIL PROTECTED] ACL - access control lists

2008-07-21 Thread apache a
does apache servers use ACLs to check conditions based on the incoming http request URL, even before the header is parsed?

Re: [EMAIL PROTECTED] ProxyPass redirects the request

2008-07-21 Thread Merton Campbell Crockett
On 20 Jul 2008, at 19:19:07, Mohammad Kargar - Indicee wrote: I’m using the following configuration to setup my local Apache as a reverse proxy for the app server (let’s call ithttp://www.backend.com/) . The problem is that apache server redirects all the requests to / mytest/ to the

Re: [EMAIL PROTECTED] http header parsing

2008-07-21 Thread Joshua Slive
On Mon, Jul 21, 2008 at 5:33 AM, apache a [EMAIL PROTECTED] wrote: has anyone found a scenarion, wherein based on a condition, the http header will NOT be parsed at all... what the steps involved, after an http request reaches the server, This is a pretty-vague question. Perhaps if you asked

Re: [EMAIL PROTECTED] ProxyPass redirects the request

2008-07-21 Thread Joshua Slive
On Mon, Jul 21, 2008 at 8:51 AM, Merton Campbell Crockett [EMAIL PROTECTED] wrote: On 20 Jul 2008, at 19:19:07, Mohammad Kargar - Indicee wrote: I'm using the following configuration to setup my local Apache as a reverse proxy for the app server (let's call ithttp://www.backend.com/). The

RE: [EMAIL PROTECTED] Configuration Errors on SSL+Apache 2.2 +mod_jk +Tomcat 5.5

2008-07-21 Thread Jorge Medina
Depending on your flavor of Linux and how you got Apache, you may already have the mod_ssl module and you may need just to load it. Check if the file mod_ssl.so already exists on the directory where apache is installed. From: kohanm [mailto:[EMAIL PROTECTED]

[EMAIL PROTECTED] Binding question.

2008-07-21 Thread James Sherwood
Hello, I am having trouble binding apache to an ip. It works fine for port 80 but when I try to add port 443 something goes wrong. This is what I have: Listen 192.168.150.12:80 Listen 192.168.150.12:443 NameVirtualHost 192.168.150.12 NameVirtualHost 192.168.150.12:443 VirtualHost

Re: [EMAIL PROTECTED] Configuration Errors on SSL+Apache 2.2 +mod_jk +Tomcat 5.5

2008-07-21 Thread Krist van Besien
On Fri, Jul 18, 2008 at 22:35, kohanm [EMAIL PROTECTED] wrote: When I run apachectl after running tomcat, I get these ERRORs: [Fri Jul 18 13:22:20 2008] [warn] Useless use of AllowOverride in line 114. Syntax error on line 57 of /usr/local/apache2/conf/extra/httpd-ssl.conf: Invalid command

Re: [EMAIL PROTECTED] Binding question.

2008-07-21 Thread Frank Gingras
James, What does the error log say, exactly? Frank. James Sherwood wrote: Hello, I am having trouble binding apache to an ip. It works fine for port 80 but when I try to add port 443 something goes wrong. This is what I have: Listen 192.168.150.12:80 Listen 192.168.150.12:443

Re: [EMAIL PROTECTED] Binding question.

2008-07-21 Thread Krist van Besien
On Mon, Jul 21, 2008 at 16:57, James Sherwood [EMAIL PROTECTED] wrote: Hello, I am having trouble binding apache to an ip. It works fine for port 80 but when I try to add port 443 something goes wrong. This is what I have: Listen 192.168.150.12:80 Listen 192.168.150.12:443

Re: [EMAIL PROTECTED] Binding question.

2008-07-21 Thread James Wuerflein
Change NameVirtualHost 192.168.150.12 to NameVirtualHost 192.168.150.12:80 From: Frank Gingras [EMAIL PROTECTED] To:users@httpd.apache.org CC:Jamie Melanson [EMAIL PROTECTED] Date: 7/21/2008 10:02 AM Subject: Re: [EMAIL PROTECTED] Binding question. James, What does the error log say,

[EMAIL PROTECTED] Apache benchmark in reverse proxy scenario for large Web apps

2008-07-21 Thread Sylvain Beaux
Hi gays, I'm designing a Apache as a reverse proxy using a home made perl script for cookie support. I needs some advises to design Apache as a reverse proxy for many web apps(~ 20 servers) There will be 500 users using this system 24/7. Each users will have 2 permanents HTTPS connections using

Re: [EMAIL PROTECTED] Configuration Errors on SSL+Apache 2.2 +mod_jk +Tomcat 5.5

2008-07-21 Thread kohanm
I do not have mod_ssl.so under Apache/modules. I downloaded Apache 2.2 the binary version and then the jk_module separately. I read from different sources that I have to install Apache 2.2.* from source than I have to enable mod_ssl and there is not any separate SSL module for Apache 2.2. am I

RE: [EMAIL PROTECTED] ProxyPass redirects the request

2008-07-21 Thread Mohammad Kargar - Indicee
Thank you very much. It seems that http://www.apachetutor.org/admin/reverseproxies is the one I need to follow to solve the issue. While I'm doing so, I'd like to ask one more question: My original requirement is to implement a maintenance page. In other words, all I need to do is to display a

Re: [EMAIL PROTECTED] ProxyPass redirects the request

2008-07-21 Thread Nick Kew
On Mon, 21 Jul 2008 08:41:59 -0700 Mohammad Kargar - Indicee [EMAIL PROTECTED] wrote: Thank you very much. It seems that http://www.apachetutor.org/admin/reverseproxies is the one I need to follow to solve the issue. While I'm doing so, I'd like to ask one more question: My original

Re: [EMAIL PROTECTED] Apache benchmark in reverse proxy scenario for large Web apps

2008-07-21 Thread Nick Kew
On Mon, 21 Jul 2008 17:20:34 +0200 Sylvain Beaux [EMAIL PROTECTED] wrote: Hi gays, Who??? so I calculate Max Client = 1300 Mb / (6,084 - 3660) = 540 processes, I prefered gaving some memory margin in case of ... Do you agree with this result ? Sounds like a case where Prefork is a poor

Re: [EMAIL PROTECTED] ACL - access control lists

2008-07-21 Thread Joshua Slive
On Mon, Jul 21, 2008 at 5:58 AM, apache a [EMAIL PROTECTED] wrote: does apache servers use ACLs to check conditions based on the incoming http request URL, even before the header is parsed? I see this is the third time you've asked variants on this question. But without actually explaining what

[EMAIL PROTECTED] configure: error: Cannot use an external APR-util with the bundled with mod_ssl enable

2008-07-21 Thread kohanm
Hi, I downloaded the Apache( httpd-2.2.4) source code. I tried to compile apache 2.2.4 with mod_ssl enable but I got errors. when I run this command : *./configure --prefix=/usr/local/apache2.2 --enable-mods-shared=most --enable-ssl --with-ssl=/usr/local/openssl-0.9.8h* I got this error:

RE: [EMAIL PROTECTED] Configuration Errors on SSL+Apache 2.2 +mod_jk +Tomcat 5.5

2008-07-21 Thread Jorge Medina
Hi MK, Correct. In that case, discard your current installation, get the source code and compile your own version of apache. You will have to do a good amount of reading to understand all the options for compiling and then running Apache. The documentation is pretty good as well as the

[EMAIL PROTECTED] Point me in the right direction

2008-07-21 Thread Mark Feller
On a given web page, if I look at the source on the server, I see tags such as A0,93,94, etc., that I guess are extensions, etc. that are added beyond the simple HTML tags that I used to hand-code simple websites many years ago. ...and that these extensions are the source of a large number of

Re: [EMAIL PROTECTED] Apache benchmark in reverse proxy scenario for large Web apps

2008-07-21 Thread Sylvain Beaux
Nick Kew a écrit : On Mon, 21 Jul 2008 17:20:34 +0200 Sylvain Beaux [EMAIL PROTECTED] wrote: Hi gays, Who??? so I calculate Max Client = 1300 Mb / (6,084 - 3660) = 540 processes, I prefered gaving some memory margin in case of ... Do you agree with this result ? Sounds

[EMAIL PROTECTED] mod proxy DSO errors(403 forbidden)?

2008-07-21 Thread Nino Saturnino Martinez Vazquez Wael
I get a error about DSO(stating that I have to enable a proxy submodule), it's there for all sub sites, root passes without problems. I have enabled all the proxy modules. Whats wrong? Error msg: [Mon Jul 21 20:40:54 2008] [notice] Apache/2.2.3 (Ubuntu) proxy_html/2.5 mod_ssl/2.2.3

Re: [EMAIL PROTECTED] mod proxy DSO errors(403 forbidden)?

2008-07-21 Thread Frank Gingras
Nino, Please load the mod_proxy_html module. Nino Saturnino Martinez Vazquez Wael wrote: I get a error about DSO(stating that I have to enable a proxy submodule), it's there for all sub sites, root passes without problems. I have enabled all the proxy modules. Whats wrong? Error msg: [Mon

Re: [EMAIL PROTECTED] ACL - access control lists

2008-07-21 Thread André Warnier
apache a wrote: does apache servers use ACLs to check conditions based on the incoming http request URL, even before the header is parsed? You have already asked that question, in different ways, several times. And you have already received responses several times, all basically saying no.

Re: [EMAIL PROTECTED] Point me in the right direction

2008-07-21 Thread Doug McNutt
At 13:47 -0400 7/21/08, Mark Feller wrote: On a given web page, if I look at the source on the server, I see tags such as A0,93,94, etc., that I guess are extensions, etc. that are added beyond the simple HTML tags that I used to hand-code simple websites many years ago. ...and that these

Re: [EMAIL PROTECTED] apache load balance very uneven

2008-07-21 Thread fernando castano
André Warnier wrote: Hi. I know next to nothing about load balancing per se, so this will be a very naive question related to the data below : does it matter ? I mean, I can see that the load appears to be uneven, but the grand total seems to be about 10% of the available cpu time. I am only

[EMAIL PROTECTED] httpd.conf file configuration for VirtualHost/VirtualHost

2008-07-21 Thread Tomcat User6
hi, I am having a problem in configuring the VirtualHost/VirtualHost tab in httpd.cong file fro apache web server. I have my application deployed on Tomcat 6.0 server with below configuration in server.xml. Host name=forum.dev.abc.com appBase=/usr/local/apache-tomcat-6.0.16/webapps

Re: [EMAIL PROTECTED] httpd.conf file configuration for VirtualHost/VirtualHost

2008-07-21 Thread André Warnier
Tomcat User6 wrote: hi, I am having a problem in configuring the VirtualHost/VirtualHost tab in httpd.cong file fro apache web server. I have my application deployed on Tomcat 6.0 server with below configuration in server.xml. Host name=forum.dev.abc.com

RE: [EMAIL PROTECTED] ProxyPass redirects the request

2008-07-21 Thread Mohammad Kargar - Indicee
Followed the instructions from http://www.apachetutor.org/admin/reverseproxies and finally ended up with the new configuration below (this snippet added to the end of the original httpd.conf). However still it doesn't work. Is there any way to debug this code to see what the problem is? LoadFile

Re: [EMAIL PROTECTED] mod proxy DSO errors(403 forbidden)?

2008-07-21 Thread Nino Saturnino Martinez Vazquez Wael
Hi Frank Thanks for the quick answer, but does'nt it mean when the module are in mods-enabled, it are loaded? Please see the contents of mods-enabled below.. Frank Gingras wrote: Nino, Please load the mod_proxy_html module. Nino Saturnino Martinez Vazquez Wael wrote: I get a error about