[EMAIL PROTECTED] how to configure apache+ssl+mod_jk+tomcat

2008-06-30 Thread Meir Yanovich
Hello all im having problem on configuring apache 2.2 forward ssl requests to tomcat im using basic configuration that i collected on the web ( mostly using old apache ) im can use ssl on the apache htdocs . but i can't make it forward to the tomcat . by the way with no ssl the http forwarding to

[Fwd: [EMAIL PROTECTED] Redirect URL with arguments]

2008-06-30 Thread Sylvain Viollat
Hello, anyone got an idea about how to do this ? Thanks ---BeginMessage--- Hi, I need to redirect the URL http://www.mydomain.net/index.php?ref=10 to http://www.mydomain.com/. I've added the following line in www.mydomain.net VirtualHost : RedirectMatch permanent /

Re: [Fwd: [EMAIL PROTECTED] Redirect URL with arguments]

2008-06-30 Thread Eric Covener
On Mon, Jun 30, 2008 at 4:46 AM, Sylvain Viollat [EMAIL PROTECTED] wrote: RedirectMatch permanent / http://www.mydomain.com The problem is that all queries which contain something after the .net/ (eg. index.php?ref=10), are redirect to http://www.mydomain.com/ref=10 If you use RedirectMatch,

Re: [EMAIL PROTECTED] how to configure apache+ssl+mod_jk+tomcat

2008-06-30 Thread Serge Dubrouski
How does your Tomcat's server.xml file looks like? Does it have an AJP listener on port 48333 like you configured in workers file? On Mon, Jun 30, 2008 at 2:40 AM, Meir Yanovich [EMAIL PROTECTED] wrote: Hello all im having problem on configuring apache 2.2 forward ssl requests to tomcat im

Re: [EMAIL PROTECTED] how to configure apache+ssl+mod_jk+tomcat

2008-06-30 Thread Meir Yanovich
it looks like this : ( i changed it from the default 8009 ) Connector port=8443 maxHttpHeaderSize=8192 maxThreads=150 minSpareThreads=25 maxSpareThreads=75 enableLookups=false disableUploadTimeout=true acceptCount=100 scheme=https secure=true

[EMAIL PROTECTED] Re: mod_proxy: Proxy sends double requests to backend server

2008-06-30 Thread MegaBrutal
Nobody has idea what may cause this problem I've described? Has anybody encountered something similar? 2008/6/27 MegaBrutal [EMAIL PROTECTED]: Hi all, I've encountered a very strange problem. I wanted to configure a proxy, but for some reason, it sends request twice to the backend server,

Re: [Fwd: [EMAIL PROTECTED] Redirect URL with arguments]

2008-06-30 Thread Sylvain Viollat
Thanks for your answer. I've try to use Redirect instead of RedirectMatch but result is the same. I'm still getting redirect with the end of the URL. Eric Covener wrote: On Mon, Jun 30, 2008 at 4:46 AM, Sylvain Viollat [EMAIL PROTECTED] wrote: RedirectMatch permanent /

Re: [EMAIL PROTECTED] how to configure apache+ssl+mod_jk+tomcat

2008-06-30 Thread Serge Dubrouski
It sounds like you have an HTTP virtual server configured on port 8000 and HTTPS virtual server configured on port 443. Most probably your mod_jk commands are defined in the scope of HTPP server and aren't active on the scope of HTTPS server. Try to move/duplicate them in the http-ssl.conf inside

Re: [EMAIL PROTECTED] how to configure apache+ssl+mod_jk+tomcat

2008-06-30 Thread Meir Yanovich
hi thanks for the fast reply , i did what you said , and moved the JkMount configuration to be under the VirtualHost _default_:443 in http-ssl.conf. and it does work . i will never could guess that . part of the mod_jk config is in the http.conf and other part in the http-ssl.conf. ok i have

RE: [EMAIL PROTECTED] how to configure apache+ssl+mod_jk+tomcat

2008-06-30 Thread Jorge Medina
Have you configured the Tomcat AJP connector in the same port (48333)? Tomcat has it configured in port 8009 by default. -Original Message- From: Meir Yanovich [mailto:[EMAIL PROTECTED] Sent: Monday, June 30, 2008 4:40 AM To: users@httpd.apache.org Subject: [EMAIL PROTECTED] how to

Re: [EMAIL PROTECTED] how to configure apache+ssl+mod_jk+tomcat

2008-06-30 Thread Serge Dubrouski
On Mon, Jun 30, 2008 at 7:04 AM, Meir Yanovich [EMAIL PROTECTED] wrote: hi thanks for the fast reply , i did what you said , and moved the JkMount configuration to be under the VirtualHost _default_:443 in http-ssl.conf. and it does work . i will never could guess that . part of the mod_jk

[EMAIL PROTECTED] SSLusername and Authentication

2008-06-30 Thread mdn teo
Hi, I'm working with mod_authnz_ldap, mod_ssl authenticating with certificates and I've got some questions. This is my situation (some directives are omitted) SSLVerifyClient require SSLOptions

Re: [EMAIL PROTECTED] SSLusername and Authentication

2008-06-30 Thread Eric Covener
On Mon, Jun 30, 2008 at 12:25 PM, mdn teo [EMAIL PROTECTED] wrote: SSLOptions +ExportCertData +StdEnvVars +StrictRequire -FakeBasicAuth If you turn off SSLFakeBasicAuth, how do you expect any field from the cert to be used for the username? -- Eric Covener [EMAIL PROTECTED]

[EMAIL PROTECTED] Apache 1.3.x issues

2008-06-30 Thread Tan, Liao
Folks, We´ve been following the steps in http://www.modssl.org/example (Build and install the SSL-aware Apache), and the following log, when ran the command below: $ ./configure \ --with-apache=../apache_1.3.41 \ --with-ssl=../openssl-0.9.8g \

Re: [EMAIL PROTECTED] Apache 1.3.x issues

2008-06-30 Thread Eric Covener
On Mon, Jun 30, 2008 at 2:39 PM, Tan, Liao [EMAIL PROTECTED] wrote: cd ..; gcc -DHPUX11 -DMOD_SSL=208131 -DUSE_HSREGEX -DEAPI -DNO_DL_NEEDED `./apaci` -L/FlexUAT/busobj/BOBJ6/TESTES/openssl-0.9.8g -o helpers/dummy helpers/dummy.c -lm -lpthread -ldbm -lssl -lcrypto -lexpat ld:

Re: [EMAIL PROTECTED] SSLusername and Authentication

2008-06-30 Thread mdn teo
It works, I see the Username in my log files set as the field I choose with SSLusername. But the field gets empty as I use another module like mod_authn_ldap http://httpd.apache.org/docs/2.2/mod/mod_ssl.html#sslusername Note that this directive has no effect if the FakeBasic option is used

Re: [EMAIL PROTECTED] SSLusername and Authentication

2008-06-30 Thread Eric Covener
On Mon, Jun 30, 2008 at 4:50 PM, mdn teo [EMAIL PROTECTED] wrote: It works, I see the Username in my log files set as the field I choose with SSLusername. But the field gets empty as I use another module like mod_authn_ldap http://httpd.apache.org/docs/2.2/mod/mod_ssl.html#sslusername Note

Re: [EMAIL PROTECTED] mod_proxy_html rewriting query string portion of link

2008-06-30 Thread Ray Van Dolson
On Fri, Jun 27, 2008 at 03:48:47PM -0700, Ray Van Dolson wrote: I'm attempting to use mod_proxy_html to rewrite internal URL's to the corresponding external URL. It seems to be working for the most part, but I am having trouble getting the query string portion of a URL to be processed. Hi