Re: [us...@httpd] Client certificate authentication on tunneling proxy

2010-01-20 Thread Andrei T
Igor Cicimov wrote: So you are trying to connect to port 80 on the server not 443? The SSL host listens to 443 so what do you expect to happen when you connect to port 80 as shown in your test? Have you redirected the port 80 to 443 in your configuration or what? I am trying to connect to ap

Re: [us...@httpd] Client certificate authentication on tunneling proxy

2010-01-20 Thread Igor Cicimov
So you are trying to connect to port 80 on the server not 443? The SSL host listens to 443 so what do you expect to happen when you connect to port 80 as shown in your test? Have you redirected the port 80 to 443 in your configuration or what? You have also mentioned client certificates so have you

[us...@httpd] Running Python over FastCGI

2010-01-20 Thread Nilesh Govindarajan
Hi, I have Apache 2.2.14 with mod_fastcgi. I am running PHP using this configuration - AddHandler php-fcgi .php FastCgiServer cgi-bin/php-cgi Action php-fcgi cgi-bin/php-cgi Options +ExecCGI And it is working properly. Is there any such method to run python too ? I am relativ

Re: [us...@httpd] speaking url is not working inside subfolder

2010-01-20 Thread J. Bakshi
Devraj Mukherjee wrote: > Hi, > > On Wed, Jan 20, 2010 at 3:28 AM, J. Bakshi wrote: > >> Dear list, >> >> Options +FollowSymLinks >> RewriteEngine on >> >> # domain for typo3 >> >> RewriteCond %{HTTP_HOST} ^(www.)domain.in$ >> RewriteCond %{REQUEST_URI} !^/TYPO3/ >> RewriteCond %{REQUEST_FILENA

Re: [us...@httpd] ModRewrite Help

2010-01-20 Thread Eric Covener
On Wed, Jan 20, 2010 at 7:57 PM, Drew Tomlinson wrote: > Eric Covener wrote: >> >> On Wed, Jan 20, 2010 at 6:24 PM, Drew Tomlinson >> wrote: >> >>> >>> RewriteRule ^/(.*)         http://www.alchemistswarehouse.com/$1 [R] >>> >>> I have tried putting this code in my .htaccess file in different pla

[us...@httpd] Client certificate authentication on tunneling proxy

2010-01-20 Thread Andrei T
Hi, I am trying to figure out if it is possible to configure Apache (any version) so that it would work as a tunneling proxy for HTTPS servers such that it would also verify the client certificates used to access those servers. The goal is to protect servers on the internal network from unaut

Re: [us...@httpd] ModRewrite Help

2010-01-20 Thread Drew Tomlinson
Eric Covener wrote: On Wed, Jan 20, 2010 at 6:24 PM, Drew Tomlinson wrote: RewriteRule ^/(.*) http://www.alchemistswarehouse.com/$1 [R] I have tried putting this code in my .htaccess file in different places but it doesn't seem to have any effect. I've even removed the "L" flag fro

Re: [us...@httpd] ModRewrite Help

2010-01-20 Thread Eric Covener
On Wed, Jan 20, 2010 at 6:24 PM, Drew Tomlinson wrote: > RewriteRule ^/(.*)         http://www.alchemistswarehouse.com/$1 [R] > > I have tried putting this code in my .htaccess file in different places but > it doesn't seem to have any effect.  I've even removed the "L" flag from the This rule i

[us...@httpd] ModRewrite Help

2010-01-20 Thread Drew Tomlinson
I'm trying to use mod_rewrite to rewrite the URL displayed in the browser address bar to the "www." form as described here: http://httpd.apache.org/docs/2.0/rewrite/rewrite_guide.html#canonicalhost This particular site is a ZenCart installation that is hosted. Thus I have to use .htaccess fil

Re: [us...@httpd] speaking url is not working inside subfolder

2010-01-20 Thread Devraj Mukherjee
Hi, On Wed, Jan 20, 2010 at 3:28 AM, J. Bakshi wrote: > Dear list, > > Options +FollowSymLinks > RewriteEngine on > > # domain for typo3 > > RewriteCond %{HTTP_HOST} ^(www.)domain.in$ > RewriteCond %{REQUEST_URI} !^/TYPO3/ > RewriteCond %{REQUEST_FILENAME} !-f > RewriteCond %{REQUEST_FILENAME} !-

Re: [us...@httpd] Handling multipart/form-data requests via Apache Module

2010-01-20 Thread Devraj Mukherjee
If you can access the POST data then it should be a matter of decoding the mime string and get the multipart data out. Are you writing your module in C, Perl or Python? On Thu, Jan 21, 2010 at 5:07 AM, Jain Sachinkumar wrote: > Hello, > > We are interested in logging HTTP requests that are sent

[us...@httpd] Handling multipart/form-data requests via Apache Module

2010-01-20 Thread Jain Sachinkumar
Hello, We are interested in logging HTTP requests that are sent to web applications hosted on the Apache web server. Eventually, as part of a larger research project, we would like to be able to replay these requests automatically on the web application. For this purpose, we have developed an Apac

Re: [us...@httpd] Apache 2.2: mod_proxy_balancer does not work as documented?

2010-01-20 Thread Francis GALIEGUE
On Fri, Jan 15, 2010 at 21:39, inas inassen wrote: > Hi > > these are my config files > > in httpd.conf add > [...] Thank you! Following these instructions, reading here and there and putting it all together, I managed to get it to work. -- Francis Galiegue ONE2TEAM Ingénieur système Mob : +3

[us...@httpd] force apache to always rebalance to same box for different tomcat contexts

2010-01-20 Thread Andrey Ilyin
Hi, I am having a serious issue for which I could not find solution. The configuration: Apache: 2.2 serving as load balancer as well workers.properties worker.list=balancer worker.engine1.port=10001 worker.engine1.host=localhost worker.engine1.type=ajp13 worker.engine1.lbfactor=1 #worker.

Re: [us...@httpd] SSL file location and permissions?

2010-01-20 Thread Dan Schaefer
On 1-19-2010 1:59 AM, Krist van Besien wrote: On Mon, Jan 18, 2010 at 8:52 PM, Dan Schaefer wrote: Is there a standard location where the SSL crt, csr, and key files should be located? There is no standard location. Practices vary by distribution. On Fedora its /etc/pki/tls On my Ub

RE: [us...@httpd] Rewrite Voodoo pt. 2

2010-01-20 Thread Oliver Schoenborn
> >> My attempt was: >> >> RewriteEngine On >> RewriteRule ^(www\.)?domain\.ext/subdomain/(.*)$ >> subdomain\.domain\.ext/$2 [R=301,L] >> >> I now think this would be better: >> >> RewriteEngine On >> RewriteRule ^domain\.ext/subdomain/(.*)$ subdomain\.domain\.ext/$2 >> [R=301,L] > > No

Re: [us...@httpd] speaking url is not working inside subfolder

2010-01-20 Thread J. Bakshi
On Wed, 20 Jan 2010 10:19:24 +0100 Krist van Besien wrote: > On Tue, Jan 19, 2010 at 5:28 PM, J. Bakshi > wrote: > > > The .htccess successfully redirects the concerned domain into the > > sub-folder (TYPO3) . But the problem is with speaking url. Clicking > > on any links always and always goe

RE: [us...@httpd] Rewrite Voodoo pt. 2

2010-01-20 Thread daniel . goulder
> On 19 January 2010 22:24, Reese wrote: > > On 19-Jan-10 17:16, Peter J Milanese wrote: > > Have to throw in something here. Tom gave you the right answers. What > > exactly is 'one of those'? > > RTFM is not always the "right" answer to the question asked. I agree, but Tom's answer was more tha

Re: [us...@httpd] speaking url is not working inside subfolder

2010-01-20 Thread Krist van Besien
On Tue, Jan 19, 2010 at 5:28 PM, J. Bakshi wrote: > The .htccess successfully redirects the concerned domain into the > sub-folder (TYPO3) . But the problem is with speaking url. Clicking on any > links always and always goes to the very first page. Waht is a "speaking url"? Could it be that you