Re: [EMAIL PROTECTED] Apache, Tomcat and mod_proxy

2007-12-07 Thread GKapitany
Hi, Do you have a firewall between apache and Tomcat? Looks like the connection gets closed before Tomcat is able to send the response. Try JkOptions DisableReuse, this worked for me. Gabriel "Ângelo Vimeney"

Re: [EMAIL PROTECTED] DNS Round-Robin + Apache + Jboss

2007-11-28 Thread GKapitany
This is done through jvmRoute so you have to make sure the settings in workers.properties would match jvmRoute on the application server side. This route gets appended to your JSESSIONID, take a look at the cookies in your browser... If you want more details just set: JkLogLevelinfo Regards, G

Re: [EMAIL PROTECTED] mod_jk and mod_rewrite

2007-11-26 Thread GKapitany
You are rewriting /oasys/init --> /cwsoft/init Then JkMount /oasys/* tomcatserver doesn't apply because the url become: /cwsoft/init You need to change it to: JkMount /cwsoft/init/* tomcatserver Gabriel Jér

Re: [EMAIL PROTECTED] DNS Round-Robin + Apache + Jboss

2007-11-26 Thread GKapitany
Hi, Would be more efficient to use mod_jk in load balancing and use: worker.loadbalancer1.sticky_session=1. If you are looking for session replication then your container should support that. Gabriel Fabri

Re: [EMAIL PROTECTED] apache remote logging

2007-11-15 Thread GKapitany
I don't want necessarily an ssh tunnel and scp is not good because I need the logs on the destination as they are written. I need to be able to tail them at the destination. It is about 50 webservers and 100 app servers as last resort something like this: CustomLog "| hose 1.2.3.4 5000" comm

[EMAIL PROTECTED] apache remote logging

2007-11-15 Thread GKapitany
Hi all, I'd like to have number of apache servers logging remotely to a syslog-ng server. Logging using syslogd -r is not an option, since I don't have root on this machines. I'm thinking to pipe the logs an aplication which would do the job (like netpipes or something). Is there a log module whic

Re: [EMAIL PROTECTED] rotatelogs clean up

2007-11-14 Thread GKapitany
sorry, you're right. Michael McGlothlin <[EMAIL PROTECTED]

Re: [EMAIL PROTECTED] rotatelogs clean up

2007-11-14 Thread GKapitany
For logrotate, you need root access to setup Michael McGlothlin <[EMA

Re: [EMAIL PROTECTED] rotatelogs clean up

2007-11-14 Thread GKapitany
I would add something like this, in crontab: find /private/var/log/httpd/sites/domain.com -name *_log.* -atime +7 -exec -rm {} \; Regards, Gabriel jtkc

[EMAIL PROTECTED] Gabriel Kapitany is out of the office.

2007-08-21 Thread GKapitany
I will be out of the office starting 21/08/2007 and will not return until 24/08/2007. I'm currently out of the office.I will respond to your message when I return. For emergencies please contact Kyle Bassett or Ryan Shows. Thanks, Gabriel

Re: [EMAIL PROTECTED] mod_rewrite inquiry

2007-06-20 Thread GKapitany
Hi Steve, RewriteRule ^confirm/([^/]*)/([^/]*)\.html$ http://foo.com/confirm.php?lmusr=$1&lmconfrm=$2 [R,L] should do it. Reagards, Gabriel Steve Finkelstein

Re: [EMAIL PROTECTED] ReWrite Rule help required

2007-06-20 Thread GKapitany
Hi, You need to have a . . . . seted up. Gabriel "Lalit Kapoor" <[EMAIL PROTECTED]

Re: [EMAIL PROTECTED] ReWrite Rule help required

2007-06-20 Thread GKapitany
Hi, If your https host is not accessible directly, then do you have a virtualhost seted up listening on 443? Gabriel "Lalit Kapoor" <[EMAIL PROTE

[EMAIL PROTECTED] RE: ProxyPassReverse question

2007-06-19 Thread GKapitany
Ok, figured out, the problem lies in the application, where a java script code does the redirect on the client side. Hello, I have Apache as a frontend for Geronimo app server. The connection is done through mod_proxy_ajp. I have to rewrite the outgoing url and I'm using ProxyPassReverse for thi

[EMAIL PROTECTED] ProxyPassReverse question

2007-06-19 Thread GKapitany
Hello, I have Apache as a frontend for Geronimo app server. The connection is done through mod_proxy_ajp. I have to rewrite the outgoing url and I'm using ProxyPassReverse for this. I've just realized that I can't use mod_rewrite at all because of a content switch on the network. My problem is t

Re: [EMAIL PROTECTED] post data lost using mod_rewrite

2007-06-19 Thread GKapitany
Thanks Matus, Yes, fixed with mod_proxy_ajp, mod_rewrite, and mod_balancer. Needed mod_rewrite because of the application but works now. Regards, Gabriel Matus UHLAR -

[EMAIL PROTECTED] post data lost using mod_rewrite

2007-06-18 Thread GKapitany
Hi, I'm wondering if there is a way to preserve POST data while using mod_rewrite redirect? Thanks, Gabriel - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html>

Re: [EMAIL PROTECTED] ProxyPassReverse not working

2007-06-18 Thread GKapitany
Hi Tony, Thanks a lot, it worked. Regards, Gabriel "Tony Stevenson" <[EMAIL PROTECTED]

[EMAIL PROTECTED] ProxyPassReverse not working

2007-06-18 Thread GKapitany
Hello, I'm trying to route requests to the application servers based on the URL, using the configuration below. The direct request reaches the app servers but the ProxyPassReverse doesn't work, instead of getting: http://myhost.com/prod/ on the client I get http://myhost.com/. ==

[EMAIL PROTECTED] rewrite outgoing url

2007-06-15 Thread GKapitany
Hi guys, I'm trying to rewrite outgoing url as follows: incoming to apache ---> http://myhost.com//folder rewriten to> http://myhost.com/folder then forwarded to load balancer mod_jk > /folder/* loadbalancer (geronimo servers) the o