Questions tagged [mod-proxy]

mod-proxy is the proxying module for the Apache HTTP server.

mod-proxy is the proxying module for the Apache HTTP server.

Questions with this tag should relate directly to the use of this module. Questions about mod-proxy-balancer should use that tag rather than this one.

848 questions
0
votes
1 answer

Apache virtual proxy, do not redirect from root

I have the following in my vhosts.conf: NameVirtualHost *:80 ServerName ci.myserver.com ProxyRequests Off ProxyPreserveHost On ProxyPass / ajp://127.0.0.1:8009/ ProxyPassReverse / ajp://127.0.0.1:8009/ …
Xentatt
  • 1,264
  • 22
  • 35
0
votes
1 answer

Redirect a confluence page from Proxy Server

I have two servers, one of which is solely running Atlassian Confluence (no apache installed), the other is a DMZ server which is used as a reverse proxy server (mod_proxy), pointing the address http://confluence.office.company.com to…
Steve_R
  • 31
  • 1
  • 2
0
votes
1 answer

200 ACT HTTP Response

I have a bunch of Tomcat 8.0.15, Apache 2.2.29 and mod_jk 1.2.40 (win2003 serv) In the http response status text I get "200 ACT". Is not a standart http 1.1 rfc "200 OK". It doesn't affect on a normal work, but response is really weird... Also…
0
votes
1 answer

apache ignore htaccess and reach tomcat

I've have a java application running on tomcat and i'm using the apache mod_proxy module to pass the files to tomcat, however tomcat seems to be ignore the .htaccess files, here my vhost.conf. How can I instruct apache to read the .htaccess < Proxy…
Jecki
  • 802
  • 3
  • 16
  • 32
0
votes
1 answer

Apache ProxyPass all requests

I have Proxy Pass somewhat working. I am using it like so ProxyPass /chorus/ http://localhost:7070/ ProxyPassReverse /chorus/ http://localhost:7070/ This chorus folder does not exist and I am accessing through apache port 80 in the browser.…
user2704766
  • 235
  • 1
  • 5
  • 14
0
votes
1 answer

catch 500s when proxying requests in mod_perl

I have a mod_perl module that proxies requests to another server in certain situations. e.g. if($something) { $r->proxyreq(1); $r->uri( ... other server .... ); $r->args($args); …
OneSolitaryNoob
  • 5,423
  • 3
  • 25
  • 43
0
votes
2 answers

Apache URL rewrite before Proxy

I have apache set up as a proxy to my application that needs to run on a specific port, this works fine with virtual host. Now I need to add another directive, I need to remove /ex/ from any incoming request and pass the rewritten url it to the…
blackbird
  • 1,129
  • 1
  • 23
  • 48
0
votes
1 answer

Artifactory apache2 proxy on domain root

I'm trying to proxy artifactory under my domain but I can't get it to work on the domain root, just /artifactory. I want artifactory to be accessible at http://repo.example.com, not at http://repo.example.com/artifactory like it's forcing me to…
franga2000
  • 587
  • 1
  • 9
  • 19
0
votes
1 answer

Apache proxypass and multilingual domains

I have a website on domain.com which has multilingual content in URLs e.g.: domain.com/en for english domain.com/de for german domain.com/it for italian etc. These are not really directories - these are just rewrites that rewrite to…
j99
  • 285
  • 2
  • 17
0
votes
0 answers

Transparet/silent redirect to port

I have a homepage http://homepage.com/ which use port 80 using apache2. I host a SPARQL endpoint at http://homepage.com:8080/sparql/ but I would like to rewrite this to www.homepage.com/sparql including get queries such as: …
0
votes
0 answers

ProxyPass setup for multiple tomcat instances

I tried implementing load balancing using mod_jk with two tomcat instance. It holds good except for the case of spring security check. When i try using j_spring securitycheck. it is not working. Upon googling, this is what was the solution…
rolling stone
  • 543
  • 1
  • 8
  • 26
0
votes
1 answer

Apache 2.2 ProxyPassMatch RegEx

I would like to use Apache 2.2 ProxyPassMatch to make a Reverse Proxy. Expectations: Exclude specified directories in the DocumentRoot and all others redirect…
LittleT
  • 25
  • 6
0
votes
1 answer

Apache mod_rewrite as proxy not working

I'm trying to use apache as a proxy server to redirect some requests to a service running on a different port. I'm attempting to follow the instructions here: http://httpd.apache.org/docs/2.4/rewrite/proxy.html I've done exactly this to install (and…
Joe K
  • 18,204
  • 2
  • 36
  • 58
0
votes
1 answer

Apache bypass URL based on Header

Am looking to by pass url based on value on header , when request coming to apache server will inspect the header and if value = test1 it will rewrite proxy pass url exampel : www.demo.test.com >> to www.end.test.com if the value is null…
LeoSam
  • 4,681
  • 8
  • 31
  • 40
0
votes
1 answer

Apache and ProxyPass proxy

I would like to implement a kind of a proxy system, where I can type url like this: http://example.com/www.stackoverflow.com and get contents of www.stackoverflow.com returned. What I tried is this: ProxyRequests Off Order deny,allow …
Zed
  • 5,683
  • 11
  • 49
  • 81