Re: [users@httpd] Forcing to give username

2012-10-15 Thread Gautier DI FOLCO
2012/10/16 lists-apache > > > Original Message > > Date: Tuesday, October 16, 2012 12:04:46 AM +0200 > > From: Gautier DI FOLCO > > To: users@httpd.apache.org > > Subject: Re: [users@httpd] Forcing to give username > > > > I have an SVN repository requestable via Apache

Re: [users@httpd] Apache - ProxyPass issue -- pls suggest

2012-10-15 Thread vicky007aggarwal
Tom- thanks a lot for such a nice explanation Thanks, Vicky On Oct 15, 2012, at 8:53 PM, Tom Evans wrote: > On Sun, Oct 14, 2012 at 5:22 PM, vivek aggarwal > wrote: >> Folks, >> >> I am not able to forward the request from apache to tomcat when i am using >> the following configuration for P

Re: [users@httpd] Forcing to give username

2012-10-15 Thread Gautier DI FOLCO
2012/10/15 Eric Covener > On Mon, Oct 15, 2012 at 5:25 PM, Gautier DI FOLCO > wrote: > > I have an SVN repository requestable via Apache HTTPD Server 2.2.8. I > want > > to > > > > allow anyone to update or commit on it but I want a committer name. So I > > must > > > > force the clients to prov

Re: [users@httpd] Forcing to give username

2012-10-15 Thread Eric Covener
On Mon, Oct 15, 2012 at 5:25 PM, Gautier DI FOLCO wrote: > I have an SVN repository requestable via Apache HTTPD Server 2.2.8. I want > to > > allow anyone to update or commit on it but I want a committer name. So I > must > > force the clients to provide an username but I don't want to check his

[users@httpd] Forcing to give username

2012-10-15 Thread Gautier DI FOLCO
I have an SVN repository requestable via Apache HTTPD Server 2.2.8. I want to allow anyone to update or commit on it but I want a committer name. So I must force the clients to provide an username but I don't want to check his password. I try this: DAV svn SVNParentPath /www/sv

[users@httpd] Chroot + ITK

2012-10-15 Thread James Devine
Is there a way to get chroot and MPM-ITK to work in concert? chroot works when I use prefork but with itk it seems to be ignored. I am using ubuntu 12.04 + apache 2.2.22-1ubuntu1.

Re: [users@httpd] Re: RewriteCond - Multiple matches

2012-10-15 Thread Mark Montague
On October 15, 2012 12:23 , andy wrote: RewriteEngine On RewriteCond %{HTTP:MY-HEADER} (INTERESTING_[a-z0-9_]+).*+ [NC] RewriteRule .* - [E=THING1:%1] RewriteRule .* - [E=THING2:%2] RequestHeader set OUTPUT-HEADER "%{THING1}e,%{THING2}e" [...] So if I put this header in INTERESTING_1,something,

[users@httpd] Re: RewriteCond - Multiple matches

2012-10-15 Thread andy
Just to post my config and some more detail about the header matching problem. RewriteEngine On RewriteCond %{HTTP:MY-HEADER} (INTERESTING_[a-z0-9_]+).*+ [NC] RewriteRule .* - [E=THING1:%1] RewriteRule .* - [E=THING2:%2] RequestHeader set OUTPUT-HEADER "%{THING1}e,%{THING2}e" The reason behind

Re: [users@httpd] Apache - ProxyPass issue -- pls suggest

2012-10-15 Thread Tom Evans
On Sun, Oct 14, 2012 at 5:22 PM, vivek aggarwal wrote: > Folks, > > I am not able to forward the request from apache to tomcat when i am using > the following configuration for ProxyPass elements : > > > ServerName vicky.com > ProxyPass /http://localhost:8080/kdah > ProxyPassReverse /http

Re: [users@httpd] Apache - ProxyPass issue -- pls suggest

2012-10-15 Thread Eric Covener
On Mon, Oct 15, 2012 at 7:02 AM, wrote: > Below tomcat url works http://localhost:8080/kdah when accessed bypassing > apache. While using apache proxy it doest run by giving context root as "/" > in proxypass attribute > And requesting what? What does the error log and access log say? What does

Re: [users@httpd] Mac OS X and SSL Client Certitficates

2012-10-15 Thread Mark Montague
On October 12, 2012 10:41 , Tom Browder wrote: I have successfully generated SSL client certs (generated with openssl 1.0.1c) used by Safari, Firefox, and Chrome on Linux and Windows plus IE 9 on Windows, but I cannot get successful access with either Safari or Firefox on Mac OS X. I think it

Re: [users@httpd] RewriteCond - Multiple matches

2012-10-15 Thread Mark Montague
On October 15, 2012 7:16 , andy wrote: I am having a problem which I believe is related to greedy matching. Header on the way in MY-HEADER: interesting_1,something_else,interesting_2,interesting_3 and I want to set an environment variable then use mod_headers to replace it with MY-HEADER:

Re: [users@httpd] Re: Client certificate authentication issues

2012-10-15 Thread Mark Montague
On October 15, 2012 6:11 , VP wrote: I am still continuing my search to find other solutions to fix my issue. I have a question. Lets say even if my SSLVerifyClient in is Location block called "secure". Would the SSL Renegotiation still trigger if the user types in direct URL the very first time

[users@httpd] RewriteCond - Multiple matches

2012-10-15 Thread andy
I am having a problem which I believe is related to greedy matching. Header on the way in MY-HEADER: interesting_1,something_else,interesting_2,interesting_3 and I want to set an environment variable then use mod_headers to replace it with MY-HEADER: interesting_1,interesting_2,interesting_3

Re: [users@httpd] Apache - ProxyPass issue -- pls suggest

2012-10-15 Thread vicky007aggarwal
Below tomcat url works http://localhost:8080/kdah when accessed bypassing apache. While using apache proxy it doest run by giving context root as "/" in proxypass attribute Thanks, Vicky On Oct 15, 2012, at 4:28 PM, Eric Covener wrote: > On Mon, Oct 15, 2012 at 5:43 AM, wrote: >> Any thoug

Re: [users@httpd] Apache - ProxyPass issue -- pls suggest

2012-10-15 Thread Eric Covener
On Mon, Oct 15, 2012 at 5:43 AM, wrote: > Any thoughts on my below issue?? > Pls help > Provide details. What URL works directly on your backend server? What URL do you request? Use a client that gives you a proper error message and read your Apache logs. --

Re: [users@httpd] Re: Client certificate authentication issues

2012-10-15 Thread VP
Hi Mark, I am still continuing my search to find other solutions to fix my issue. I have a question. Lets say even if my SSLVerifyClient in is Location block called "secure". Would the SSL Renegotiation still trigger if the user types in direct URL the very first time? Like calling: https://www.s

Re: [users@httpd] Apache - ProxyPass issue -- pls suggest

2012-10-15 Thread vicky007aggarwal
Any thoughts on my below issue?? Pls help Thanks, Vicky On Oct 15, 2012, at 1:46 AM, vicky007aggar...@yahoo.co.in wrote: > Eric > > In my config file i am using only one virtual host i.e is the below one . > My objective is to use without /kd context path so that on typing vicky.com > it shou