Re: [users@httpd] Apache Proxy Setup issue

2013-02-18 Thread jitesh dundas
Hi, Thank you for your reply. Here is the virtualhost entry:- VirtualHost mylaptop.company.com:80 ServerName mylaptop.company.com RewriteEngine On RewriteCond %{REQUEST_METHOD} ^TRACE RewriteRule ^/sonar/* http://mylaptop.company.com:81/sonar/* ProxyPass / http://mylaptop.company.com:81/

Re: [users@httpd] Apache Proxy Setup issue

2013-02-18 Thread jitesh dundas
Sorry I have corrected the server name but the issue is the same.(I am hiding the actual names). VirtualHost http://sonar.it.xyz.com :80 http://mylaptop.company.com/ ServerName mylaptop.company.com RewriteEngine On RewriteCond %{REQUEST_METHOD} ^TRACE RewriteRule ^/sonar/* http://

Re: [users@httpd] Apache Proxy Setup issue

2013-02-18 Thread Igor Cicimov
On 19/02/2013 5:04 AM, jitesh dundas jbdun...@gmail.com wrote: Sorry I have corrected the server name but the issue is the same.(I am hiding the actual names). VirtualHost http://sonar.it.xyz.com :80 This is wrong what is a url doing here??? Do you have NameVirtualHost set at all in your

[users@httpd] Apache Proxy Setup issue

2013-02-15 Thread jitesh dundas
Hi Everyone, I am trying to setup the Apache HTTP Server to handle requests from my Tomcat 7 application. So for example any URL - http://sonar.it.xyz.com should actually handle requests from the application:- http://tomcat:81/sonar . I used Proxypass and ReverseProxyPass for this and it seems

Re: [users@httpd] Apache Proxy Setup issue

2013-02-15 Thread Igor Cicimov
On 16/02/2013 2:44 AM, jitesh dundas jbdun...@gmail.com wrote: Hi Everyone, I am trying to setup the Apache HTTP Server to handle requests from my Tomcat 7 application. So for example any URL - http://sonar.it.xyz.com should actually handle requests from the application:-