active questions tagged mod-proxy - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T05:52:48Z http://stackoverflow.com/feeds/tag/mod-proxy http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/169453/bad-gateway-502-error-with-apache-modproxy-and-tomcat 4 Bad Gateway 502 error with Apache mod_proxy and Tomcat Alex Miller 2008-10-04T00:51:54Z 2009-12-03T05:58:01Z <p>We're running a web app on Tomcat 6 and Apache mod_proxy 2.2.3. Seeing a lot of 502 errors like this:</p> <blockquote> <p>Bad Gateway! The proxy server received an invalid response from an upstream server.</p> <p>The proxy server could not handle the request GET /the/page.do.</p> <p>Reason: Error reading from remote server</p> <p>If you think this is a server error, please contact the webmaster.</p> <p>Error 502 </p> </blockquote> <p>Tomcat has plenty of threads, so it's not thread-constrained. We're pushing 2400 users via JMeter against the app. All the boxes are sitting inside our firewall on a fast unloaded network, so there shouldn't be any network problems. </p> <p>Anyone have any suggestions for things to look at or try? We're heading to tcpdump next.</p> <p>UPDATE 10/21/08: Still haven't figured this out. Seeing only a very small number of these under load. The answers below haven't provided any magical answers...yet. :)</p> http://stackoverflow.com/questions/991540/apache-virtualhost-with-mod-proxy-and-ssl 0 Apache VirtualHost with mod-proxy and SSL Jean-Marc Dressler 2009-06-13T21:25:07Z 2009-11-27T20:40:28Z <p>I am trying to setup a server with multiple web applications which will all be served through apache VirtualHost (apache running on the same server). My main constrain is that each web application must use SSL encryption. After googling for a while and looking other questions on stackoverflow, I wrote the following configuration for the VirtualHost:</p> <pre><code>&lt;VirtualHost 1.2.3.4:443&gt; ServerName host.domain.org &lt;Proxy *&gt; Order deny,allow Allow from all &lt;/Proxy&gt; SSLProxyEngine On ProxyRequests Off ProxyPreserveHost On ProxyPass / https://localhost:8443/ ProxyPassReverse / https://localhost:8443/ &lt;/VirtualHost&gt; </code></pre> <p>Even though https://host.domain.org:8443 is accessible, https://host.domain.org is not, which defeats the purpose of my virtual host configuration. Firefox complains that even though it successfully connected to the server, the connection was interrupted. Chrome return an error 107: net::ERR_SSL_PROTOCOL_ERROR.</p> <p>Finally I should also mention that the virtual host works perfectly fine when I do not use SSL.</p> <p>How can I make this work ?</p> <p>Thanks</p> http://stackoverflow.com/questions/1092427/understanding-modproxy-and-apache-2-for-writing-a-comet-server 4 Understanding mod_proxy and Apache 2 for writing a comet-server Hippo 2009-07-07T13:43:52Z 2009-11-25T14:58:58Z <p>Hi folks,</p> <p>I currently try to implement a simple HTTP-server for some kind of <a href="http://en.wikipedia.org/wiki/Comet%5F%28programming%29" rel="nofollow">comet</a>-technique (long polling XHR-requests). As <code>JavaScript</code> is very strict about crossdomain requests I have a few questions:</p> <ol> <li>As I understood any apache worker is blocked while serving a request, so writing the "script" as a usual website would block the apache, when all workers having a request to serve. --> Does not work!</li> <li>I came up with the idea writing a own simple HTTP server only for serving this long polling requests. This server should not be blocking, so each worker could handle many request at the same time. As my site also contains content / images etc and my server does not need to server content I started him on a different port then 80. The problem now is that I can't interact between my <code>JavaScript</code> delivered by my apache and my comet-server running on a different port, because of some crossdomain restrictions. --> Does not work!</li> <li>Then I came up with the idea to use <code>mod_proxy</code> to map my server on a new subdomain. I really don't could figure out how <code>mod_proxy</code> works but I could imagine that I know have the same effect as on my first approach?</li> </ol> <p>What would be the best way to create these kind of combination this kind of classic website and these long-polling XHR-requests? Do I need to implement content delivery on my server at my own?</p> http://stackoverflow.com/questions/1796404/how-do-i-reliably-access-the-httpservletrequest-in-a-jspx-when-its-behind-a-prox 1 How do I reliably access the HttpServletRequest in a jspx when it's behind a proxy? neu242 2009-11-25T11:38:47Z 2009-11-25T12:21:07Z <p>I've got a jspx that needs to know the current HttpServletRequest's getServerName(). The jspx can fetch this with #{mybean.serverName} from its bean, like this:</p> <pre><code>public String getServerName() { HttpServletRequest request = (HttpServletRequest) FacesInstance.getCurrentInstance().getExternalContent().getRequest(); return request.getServerName(); } </code></pre> <p>However, when this is served behind a proxy (Apache with mod_proxy), getServerName() will <em>some times</em> return the node's host name instead of the frontend's host name. Other times it works correctly.</p> <p>A plain jsp with &lt;% request.getServerName(); %> will, however, always return the frontend's host name.</p> <p>What's the problem with FacesInstance's HttpServletRequest? Is there a way to fetch the "real" request object?</p> http://stackoverflow.com/questions/1757649/url-apache-redirection-question-domaindirectory-redirect-to-sudomain 0 URL/Apache redirection question. (domain+directory redirect to sudomain) furstgurshnur 2009-11-18T17:21:17Z 2009-11-18T17:24:16Z <p>Hello, I have been trying to figure this out for about 2 hours now. A new requirement came up where it was asked of me to try to find a way to send requests from foo.bar.com/blah to blah.bar.com. </p> <p>Technically /blah doesn't exist, but I was hoping to have the server redirect before it gets to that point.</p> <p>Has anyone had to do this before? </p> <p>What was the solution? </p> http://stackoverflow.com/questions/942735/apache-mod-proxy-load-balancer-maintenance 0 Apache mod-proxy load balancer maintenance schickb 2009-06-03T01:49:37Z 2009-11-12T21:44:31Z <p>I have mod-proxy and mod-proxy-balancer setup as a load balancing reverse proxy. Something like this:</p> <pre><code>&lt;Proxy balancer://example&gt; BalancerMember http://hostname:8000 keepalive=on BalancerMember http://hostname:8001 keepalive=on &lt;/Proxy&gt; ProxyPass / balancer://example/ ProxyPassReverse / balancer://example/ ProxyPreserveHost on ProxyRequests Off </code></pre> <p>Is there a simple way to set this up to show a static maintenance page when all members of the balancer group are down? I've done that with a hardware load balancer previously and it was very useful. </p> http://stackoverflow.com/questions/575077/rewriterule-proxy-directive-p-is-it-possible-to-make-request-use-actual-prox 0 RewriteRule, Proxy directive [P] - Is it possible to make request use actual proxy host? leftbrainlogic 2009-02-22T15:32:18Z 2009-11-07T20:53:19Z <p>Hello Everybody</p> <p>Does anyone know whether it is possible to make rewrite rules which use the proxying [P] directive, as shown below, to behave like <code>ProxyPass</code> used in conjunction with <code>ProxyPreserveHost Off</code>.</p> <p>In other words I want the server on mydomain.net to see a request for mydomain.net not mydomain.com.</p> <pre><code>RewriteCond %{HTTP_HOST} ^mydomain.com$ [NC] RewriteRule ^/(.*)$ http://mydomain.net/app1/$1 [P,L] </code></pre> <p><br/>Thanks and best regards,</p> http://stackoverflow.com/questions/1684427/disable-proxypass-rules-within-a-virtual-host-on-apache-2 0 Disable ProxyPass rules within a virtual host on apache 2 [closed] unknown (google) 2009-11-05T23:37:11Z 2009-11-05T23:37:11Z <p>I have a global proxypass rule in httpd.conf</p> <p>rules at global level</p> <pre><code>ProxyPass /test/css http://myserver:7788/test/css ProxyPassReverse /test/css http://myserver:7788/test/css </code></pre> <p>and I have a virtual host</p> <pre><code>Listen localhost:7788 NameVirtualHost localhost:7788 &lt;VirtualHost localhost:7788&gt; Alias /test/css/ "C:/jboss/server/default/deploy/test.ear/test-web-app.war/css/" &lt;/VirtualHost&gt; </code></pre> <p><strong>I would like to disable all global proxypass rules applying in this virtual host? NoProxy doesn't seem to work.</strong></p> <p>(The reason I would like to do this is I have below global rules which create a 502 proxy loop if applied within this virtual host</p> <pre><code>#pass all requests to application server ProxyPass /test http://localhost:8080/test ProxyPassReverse /test http://localhost:8080/test </code></pre> <p>)</p> <p><em>What I'm trying to do is, serve all static content (like css) using apache, while still proxying all the rest of requests to the application server.</em></p> http://stackoverflow.com/questions/1681807/proxy-url-without-authentication 0 Proxy URL without authentication Josh 2009-11-05T16:32:41Z 2009-11-05T17:25:53Z <p>I have an Apache web server with basic authentication enabled at the root directory. I can't change this due to business restrictions.</p> <p>However, we want a particular URL to be a proxy to a different site, with different authentication, without being asked for authentication by the main site.</p> <p>Example: My site is <a href="http://foo.com/" rel="nofollow">http://foo.com/</a><br> If you go to <a href="http://foo.com/" rel="nofollow">http://foo.com/</a> in a browser, you are presented with a typical authentication popup.</p> <p>If I add this:</p> <pre><code>ProxyPass /bar/ http://bar.com/ </code></pre> <p>then I go to <a href="http://foo.com/bar/" rel="nofollow">http://foo.com/bar/</a> , I am presented with an authentication popup for bar.com followed by an authentication popup for foo.com</p> <p>How can I do this sort of proxy and "ignore" the authentication from the original site?</p> http://stackoverflow.com/questions/1639471/reverse-proxy-in-cakephp 0 Reverse Proxy in CakePHP? FilmJ 2009-10-28T19:15:57Z 2009-10-28T21:01:35Z <p>I've got a CakePHP application, and the following directives in my httpd.conf</p> <pre><code>ProxyRequests off ProxyPass /forum/ http://somesite.com/phpbb3 ProxyPass /gallery/ http://someothersite.com/gallery3 &lt;Location /forum/&gt; ProxyPassReverse / &lt;/Location&gt; &lt;Location /gallery/&gt; ProxyPassReverse / &lt;/Location&gt; </code></pre> <p>Without CakePHP this works fine - but because CakePHP is using it's own redirection logic from routes.php and other sources, it seems to override any proxy settings, so any call to "/community" on my server follows the default pathway of looking for a Controller called CommunityController.</p> <p>My issue here is that I want to have one server that serves muliple applications, but keep it seamless to the user - so a complete PHPBB application can for instance run within the "/forum" directory as if it were a controller in CakePHP.</p> <p>Has anyone done this before, and can it be done? Why does <code>mod_rewrite</code> and/or the routes.php file override my <code>mod_proxy</code> directives??</p> http://stackoverflow.com/questions/1611103/can-apache-balancermember-be-configured-to-use-unix-domain-sockets 0 Can Apache BalancerMember be configured to use unix domain sockets? Mike Berrow 2009-10-23T02:21:57Z 2009-10-23T22:09:36Z <p>I am using the Apache Proxy balancer directive to hook up a set of thin servers (for Rails).</p> <p>Like so:</p> <pre><code> &lt;Proxy balancer://thinservers&gt; BalancerMember http://127.0.0.1:5000 route=thin0 BalancerMember http://127.0.0.1:5001 route=thin1 BalancerMember http://127.0.0.1:5002 route=thin2 &lt;/Proxy&gt; </code></pre> <p>However, thin can also be configured to use unix domain sockets.</p> <p>So I want to be able to do something like:</p> <pre><code> &lt;Proxy balancer://thinservers&gt; BalancerMember unix://tmp/thin.0.sock route=thin0 BalancerMember unix://tmp/thin.1.sock route=thin1 BalancerMember unix://tmp/thin.2.sock route=thin2 &lt;/Proxy&gt; </code></pre> <p>But Apache is not taking it. Apparently nginx can do it, but I really want to use Apache.</p> <p>Is there a way?</p> http://stackoverflow.com/questions/1573563/how-to-detect-network-connection-failures-in-modproxy 0 How to detect network connection failures in mod_proxy? Rowena 2009-10-15T16:35:51Z 2009-10-15T16:35:51Z <p>We have an Apache server accepting connections through mod_proxy from random computers with bad internet connections in Africa. We would like to know how many of these connections are attempted (and fail, or are truncated) as possible. How do we set up such logging in mod_proxy?</p> <p>All the other threads I've found online imply that mod_proxy was designed to hide broken connections, and so will not report them verbosely.</p> <p><a href="http://www.mail-archive.com/modperl@apache.org/msg31137.html" rel="nofollow">http://www.mail-archive.com/modperl@apache.org/msg31137.html</a> </p> <p><a href="https://issues.apache.org/bugzilla/show%5Fbug.cgi?id=38369" rel="nofollow">https://issues.apache.org/bugzilla/show%5Fbug.cgi?id=38369</a> </p> http://stackoverflow.com/questions/1561129/how-to-configure-apache-to-proxy-exactly-one-file 0 How to configure Apache to proxy exactly one file? Scott Bilas 2009-10-13T15:49:40Z 2009-10-13T17:21:12Z <p>(I must be dense - I just can't figure out the Apache documentation on how to do this.)</p> <p>To speed up some swf development I'm doing, I want to have my local machine fetch my local swf when I browse to our studio's test website. Just the one local swf only - with the rest pulled from the test website.</p> <p>So I set up apache on port 80 with mod_proxy and proxy_http_module, then added an entry for HOSTS to say the test server is 127.0.0.1. What I need are the magical incantations to put in httpd.conf to say "every call requesting <a href="http://test/blah" rel="nofollow">http://test/blah</a> goes to 10.1.1.whatever EXCEPT <a href="http://test/blah/foo.swf" rel="nofollow">http://test/blah/foo.swf</a> which goes to c:\proj\foo.swf".</p> <p>Can someone help with this? Thank you.</p> http://stackoverflow.com/questions/820310/risk-of-using-apache-modproxy 1 Risk of using Apache mod_proxy Nordin 2009-05-04T14:18:45Z 2009-09-18T22:06:52Z <p>I am now exploring to use Apache's mod_proxy's directive, eg ProxyPass, as part of solution for cross-domain scripting restriction (for html/ajax/flash code). However, I am afraid by enabling mod_proxy, I would risk having the server as open proxy.</p> <p>What's the risk, and how to minimize the risk, in short?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1417056/combining-proxy-server-modules-with-my-webapplication 0 combining proxy server modules with my webapplication unknown (google) 2009-09-13T07:00:53Z 2009-09-14T14:53:55Z <p>I want to implement a autmatic billing systen for one cybercafe.MEasning when some one want to surf net in my cafe he goes to attendent and attendent allocates him the pc and gives him the passswd which is generated by the applciation and the passswd will be valid for specific time(session of 1 hr or so depending on customer needs).Now when customer goes to his pc and opens any site he must be first redirected to my webapplication which will ask for passswd .If he enters correct details he will be allowed to surf the net for that particular and if his time expires he has to get the timer renevewd fro attnedent or else he cant serf.</p> <p>In short i want a readymade proxy server module in java that i can combine with my webapplication. As i will need to implemet billing/ autontication based on this thigs.</p> <p>What approach can i use? What proxy moduels are available?</p> http://stackoverflow.com/questions/1393706/how-to-use-a-different-path-name-in-proxypass-than-the-tomcat-context-name 1 How to use a different path name in ProxyPass than the Tomcat context name Diptendu Dutta 2009-09-08T12:23:27Z 2009-09-09T18:21:15Z <p>Hello,</p> <p>I am using Tomcat 5.5.9 and Apache 2.x</p> <p>We are trying to use a path name in ProxyPass that is different than the Tomcat context name.</p> <pre><code>ProxyPass /path http://localhost:8080/contextname </code></pre> <p>However, this does not work. When these two are the same then everything works fine.</p> <p>Most examples I see on the net also have the path equal to the Tomcat context name.</p> <p>I am using "context.xml" within the Tomcat context and do NOT have "server.xml" entries. Also, I am using plain httd.conf and NOT using any VirtualHost entries.</p> <p>Any help is appreciated.</p> <p>Regards,</p> <p>Diptenu</p> http://stackoverflow.com/questions/1357035/apache-jboss-use-port-80-at-the-same-time 0 Apache & JBoss use port 80 at the same time Stella Peristeraki 2009-08-31T11:37:26Z 2009-09-01T04:00:13Z <p>I have both Apache 2 and JBoss 4.2.3 on the same machine and would like both of them to use port 80. There are several ways I see people doing this mod_jk, mod_proxy, but I'm not sure which one is the best. </p> <p>I don't need any load balancing, but I do need HTTPS. </p> http://stackoverflow.com/questions/1050310/tomcat-clustering-and-https-issue 0 Tomcat Clustering and HTTPS Issue Angelo 2009-06-26T17:37:25Z 2009-08-15T19:00:03Z <p>Hi </p> <p>I have two instances of Tomcat 6 with content accessible via HTTP and HTTPS for other pages. </p> <p>I have configured the instances this way: </p> <p>1) Instance one to listen on port 8080(Http) and 8443(Https) 2) Instance two to listen on port 7080(Http) and 7443(Https) </p> <p>I have mod_proxy configured with Apache 2.2 to do clustering. </p> <p>The requests are coming in properly and all works well for HTTP traffic but when you are in the app and it becomes HTTPS then i get the page cannot be found when tomcat tries to serve the page. </p> <p>Now if I access the two tomcat instances directly bypassing the load balancer then everything is fine. So http/https is configured properly on tomcat but not on Apache. </p> <p>I have a feeling i must configure Apache to handle this(or mod_proxy). </p> <p>Thanks, </p> http://stackoverflow.com/questions/724599/setting-up-an-apache-proxy-with-authentication 0 Setting up an Apache Proxy with Authentication Mario Ortegón 2009-04-07T08:12:10Z 2009-07-30T11:17:56Z <p>I need to set up a proxy with authentication to verify the behavior of an application that connects to the internet.</p> <p>I am trying to set-up an Apache installation with forward proxy and authentication, and even though I am close to make it work, I wonder if there is maybe a better way, as the configuration is fairly esoteric.</p> <p>How can Apache be configured to work this way?</p> <p>Is there any other good option that is already configured? Maybe some VM or some other software tool, instead of Apache?</p> http://stackoverflow.com/questions/1081918/apache-to-tomcat-modjk-vs-modproxy 3 apache to tomcat: mod_jk vs mod_proxy cherouvim 2009-07-04T10:07:08Z 2009-07-06T18:27:02Z <p>What are the advantages and disadvantages of using *mod_jk* and *mod_proxy* for fronting a tomcat instance with apache?</p> <p>I've been using mod_jk in production for years but I've heard that it's "the old way" of fronting tomcat. Should I consider changing? Would there be the benefits?</p> <p>thanks</p> http://stackoverflow.com/questions/918641/how-can-i-set-up-a-reverse-proxy-with-modproxy-without-redirecting 2 How can I set up a reverse proxy with mod_proxy without redirecting? it-architect 2009-05-28T00:32:58Z 2009-06-29T22:00:08Z <p>How can I set up a reverse proxy with mod_proxy without redirecting to another server or IP? This will be a virtual host environment. The reason I want to do this is so that mod_proxy handles the communication with the client's browser thereby freeing up web server processes to serve the next request instead of feeding the client's browser. This is especially important when using language modules such as mod_php with MPM Prefork. The flow that I'm trying to achieve is: 1. The traffic resolves to www.mydomain.com on port 80. 2. The proxy sends the request the web server. 3. The web server sends the answer back to the proxy and disconnects from the proxy. 4. The proxy feeds the client browser.</p> <p>Once that is working I want to add nginx at the same IP address but for port 81 and proxy image requests to nginx on the same server. I do not want nginx handling the proxy nor do I want FCGI anything. I want my standard Apache mod_rewrite and .htaccess to work.</p> <p>Thanks Tons!</p> http://stackoverflow.com/questions/956361/apache-tomcat-using-modproxy-instead-of-ajp 2 Apache + Tomcat: Using mod_proxy instead of AJP Marcus Downing 2009-06-05T15:05:23Z 2009-06-07T22:05:02Z <p>Is there any way I connect Apache to Tomcat using an HTTP proxy such that Tomcat gets the correct incoming host name rather than localhost? I'm using this directive in apache:</p> <pre><code>ProxyPass /path http://localhost:8080/path </code></pre> <p>But it comes through as localhost, which is useless when we have a bunch of sites on the same server. I could set the host manually in the server config:</p> <pre><code>&lt;Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" proxyName="pretend.host" proxyPort="80" /&gt; </code></pre> <p>But that again doesn't serve more than one site. And I don't like the idea of using a different internal port for each site, that sounds really ugly.</p> <p>Is there no way to transfer the port when I proxy it?</p> <p>(If you ask why I don't just use AJP, the answer is <a href="http://stackoverflow.com/questions/246540/apache-tomcat-error-wrong-pages-being-delivered">this error</a>. I'm trying everything I can before giving up on <a href="http://serverfault.com/questions/589/alternatives-to-apache">Tomcat and Apache entirely</a>)</p> http://stackoverflow.com/questions/950713/jkmount-and-proxypass 0 JkMount and ProxyPass Ste 2009-06-04T13:47:48Z 2009-06-04T13:47:48Z <p>Hi,</p> <p>it's possible to convert a proxypass directive like this:</p> <p>ProxyPass /abc.html ajp://127.0.0.1:8009/eeff/tttt/abc.html</p> <p>using JkMount ?</p> <p>something like JkMount /abc.html ...</p> <p>or do I need to use mod_rewrite before the JkMount (used to balance the requests) ?</p> <p>Thank you</p> http://stackoverflow.com/questions/862285/modproxy-time-outs-502-and-failovers 1 mod_proxy time-outs (502) and failovers schuon 2009-05-14T08:56:41Z 2009-06-03T01:00:00Z <p>Hi,</p> <p>so we're running a cluster of 2+ backend servers (happend to be JBoss servers) that are being load-balanced by an Apache 2.2. From time to time it can happen that the backend servers become unresponsive (meaning they'll wait ages to reply to a request, but don't close the connection immediately). This will naturally end up in a 502 "Bad gateway" error. My understanding of a load-balancer that is, that it should fail-over and redirect requests to the remaining instances.</p> <p>I've seen that a node of the balancer can go to error state, but was never able to force-fully send one into that state (i.e. do that after the first 502 has been encountered). Am I missing something or is that just a feature I am wishing for? Oh, and here goes my config:</p> <pre><code>&lt;Proxy balancer://s&gt; Order deny,allow Allow from all BalancerMember http://host1:8080/ route=h1 timeout=20 retry=40 BalancerMember http://host2:8080/ route=h2 timeout=20 retry=40 &lt;/Proxy&gt; # Distribute by Round Robin, use Sticky Sessions ProxyPass / balancer://s/ stickysession=JSESSIONID lbmethod=byrequests nofailover=On ProxyPassReverse / http://host1:8080/ ProxyPassReverse / http://host2:8080/ </code></pre> <p>Best, Sebastian</p> http://stackoverflow.com/questions/937156/apache-config-to-send-sub-dirs-to-different-servers-modproxy 1 Apache Config to send sub dirs to different servers - mod_proxy consultutah 2009-06-01T22:38:27Z 2009-06-01T22:50:27Z <p>We use Apache as a reverse proxy server. This has been working well, but I now need to have <a href="http://domain.com/sub1" rel="nofollow">http://domain.com/sub1</a> proxy to serverA and <a href="http://domain.com/sub2" rel="nofollow">http://domain.com/sub2</a> proxy to serverB. Is this possible? If so, what is the config for it? </p> <p>Here is my existing config:</p> <pre><code>... &lt;VirtualHost 555.55.555.555:80&gt; ServerName domain.com DocumentRoot c:/docroot ProxyPass / http://serverA/ ProxyPassReverse / http://serverA/ &lt;/VirtualHost&gt; ... </code></pre> http://stackoverflow.com/questions/901475/is-there-any-modproxy-equivalent-for-tomcat 0 Is there any mod_proxy equivalent for tomcat? Itay Pk 2009-05-23T12:46:36Z 2009-05-23T12:58:43Z <p>I'm trying to run modified JWChat (a simple javascript based jabber client) on tomcat 5.5. This application is based on ajax, and uses http binding in order to communicate with the jabber server (I'm using openfire). When running it on apache server, it requires redirecting of the requests to the http-bind using mod_proxy and it works. Is there any alternative to do the same on tomcat? I tried UrlRewriteFilter, with no luck so far.</p> http://stackoverflow.com/questions/879241/mixing-rewriterule-and-proxypass-in-apache 1 Mixing RewriteRule and ProxyPass in Apache Taylor L 2009-05-18T18:58:06Z 2009-05-18T19:58:11Z <p>I was working on debugging an issue today related to mixing <code>mod_proxy</code> and <code>mod_rewrite</code> together and I ended up having to use <code>balancer://mycluster</code> in the <code>RewriteRule</code> in order to stop receiving a 404 error from Apache. I have two questions:</p> <p>1) Is there any other way to get the rewritten URL to go through the balancer without adding <code>balancer://mycluster</code> into the <code>RewriteRule</code>?</p> <p>2) Is there a way to define all the parameters I defined in <code>ProxyPass</code> (stickysession=JSESSIONID|jsessionid scolonpathdelim=On lbmethod=bytraffic nofailover=Off) in either the <code>&lt;Proxy&gt;</code> or <code>RewriteRule</code>? I'm concerned the requests that match the new <code>RewriteRule</code> won't load balance in the same fashion as those that go through <code>ProxyPass</code> (like <code>/app1/something.do</code>)?</p> <p>Below are the relevant sections of the httpd.conf. I am using Apache 2.2.</p> <pre><code>&lt;Proxy balancer://mycluster&gt; Order deny,allow Allow from all BalancerMember ajp://my.domain.com:8009 route=node1 BalancerMember ajp://my.domain.com:8009 route=node2 &lt;/Proxy&gt; ProxyPass /app1 balancer://mycluster/app1 stickysession=JSESSIONID|jsessionid scolonpathdelim=On lbmethod=bytraffic nofailover=Off ProxyPassReverse /app1 ajp://my.domain.com:8009/app1 </code></pre> <p>...</p> <pre><code>RewriteRule ^/static/cms/image/(.*)\.(.*) balancer://mycluster/app1/$1.$2 [P,L] </code></pre> http://stackoverflow.com/questions/473880/using-apache-proxy-to-foward-traffic-to-tinyproxy 1 Using Apache proxy to foward traffic to tinyproxy El Guapo 2009-01-23T17:57:48Z 2009-05-02T17:51:17Z <p>I need to find a way to proxy some traffic on port 80 to tinyproxy running on a separate port. We have a client working behind a very strict firewall with only port 80 open (and cannot get to sites like meebo.com, etc). I was hoping I could create a CNAME to our domain and a virtual host on apache, catch the request for that new CNAME and forward the traffic right to tinyproxy running on the same box. </p> <p>I know tinyproxy is setup and working correctly, however, when I try to pass in my traffic through Apache, I don't even see any traffic. </p> <p>Does anyone have a proposed solution? Here is my VirtualHost entry:</p> <pre><code>&lt;VirtualHost *:80&gt; ServerName sub.domain.com ProxyPass / http://127.0.0.1:50001/ ProxyPassReverse / http://127.0.0.1:50001/ &lt;/VirtualHost&gt; </code></pre> <p>where Tinyproxy is running on port 50001.</p> <p>Thanks.</p> http://stackoverflow.com/questions/719783/issues-setting-up-a-reverse-proxy-in-apache 1 Issues Setting up a reverse proxy in Apache Pete 2009-04-05T22:00:58Z 2009-04-05T23:18:17Z <p>My roommate and I each have a separate webserver we are trying to set up. We are trying to use mod_proxy so that his server will forward requests to my machine (we have two seperate machines behind one router) based on the server name. I've given the basics of what we have in our apache config currently but we are getting a 403 Forbidden error when trying to access the second domain (the first, www domain, works fine).</p> <pre><code>NameVirtualHost *:80 &lt;VirtualHost *:80&gt; DocumentRoot /var/www ServerName www.&lt;domain1&gt;.com &lt;/VirtualHost&gt; &lt;VirtualHost *:80&gt; ProxyPreserveHost On ProxyPass / http://&lt;IP addr of other box&gt;:80 ProxyPassReverse / http://&lt;IP addr of other box&gt;:80 ServerName &lt;dummydomain&gt;.gotdns.com &lt;/VirtualHost&gt; </code></pre> http://stackoverflow.com/questions/664287/redirect-url-path-to-forward-to-tomcat-servlet-using-apache-modproxy 1 Redirect URL path to forward to tomcat servlet using Apache/mod_proxy Ish 2009-03-19T22:20:06Z 2009-03-20T06:53:06Z <p>I currently have a tomcat servlet 1 running under the ROOT:</p> <p>api1.myhost.com:8080/</p> <p>I'm using mod_proxy and simply forwarding all requests from api1.myhost.com to this instance. This is working as of today.</p> <p>I now have installed a second servlet 2 which runs under the same instance of tomcat (same IP address):</p> <p>www.myhost.com:8080/servlet2</p> <p>I want all requests to a new URL api2 to go to that second servlet such that:</p> <p><strong>api2</strong>.myhost.com</p> <p>now gets forwarded to the second servlet instance.</p> <p>I've created an A record such that api2.myhost.com points to my server IP. How do you make api2.myhost.com forward to www.myhost.com:8080/servlet2 ?</p>