Tagged Questions
The proxypass tag has no wiki summary.
4
votes
4answers
5k views
apache ProxyPass: how to preserve original IP address
We are using ProxyPass to redirect all "/r" requests to jboss on port 18080 as follows:
ProxyPreserveHost on
ProxyPass /r http://localhost:18080/redirectService/
ProxyPassReverse /r ...
2
votes
2answers
4k views
ProxyPass, ProxyReverse vs AJP
I currently have a Tomcat + Apache HTTP server setting to serve my Java servlet:
ProxyPass /myservice http://localhost:8080/myservice
ProxyPassRerverse /myservice http://localhost:8080/myservice
...
2
votes
5answers
7k views
Help me understand how to use ProxyPass
UPDATE: I added a revised question after playing around with it two answers below.
Hi there,
If you're reading this you're probably familiar with Apache's mod_proxy and its ProxyPass function. Like ...
1
vote
1answer
17 views
ProxyPass URL Rules?
I have a website http://foo.com running on Apache port 80 which I would like to redirect to a Django app on port 8000. However, I have one folder, foo.com/wiki which I would not like to redirect and ...
1
vote
0answers
60 views
Bad gateways with large POST uploads and my apache + varnish + plone setup
This is a rather complicated scenario, so I would highly appreciate any pointer to the correct direction.
So I have setup apache on server A to proxy https traffic το server B, that is a plone site ...
1
vote
1answer
121 views
Reverse Proxy using Apache directives
I am trying to do reverse proxy using Apache directives
I will get a url like this: https://192.168.1.67:/fes-bin/public/ezidentity/js/jquery-1.2.6.js
I want to modify it like: ...
1
vote
1answer
213 views
Nginx: set up proxy_path correctly. Problem with URLs
I have several servers running in virtual machines. And I have one running nginx for proxying requests to those servers. For example, http://mydomain.com/wiki should proxy request to ...
1
vote
2answers
1k views
Apache 2.2 ProxyPass with Weblogic - Can't use root
I'm trying to configure an Apache 2.2 proxy server to point to multiple Weblogic instances. I'm doing fairly well with everything but a minor point.
I can get this to work: ProxyPass /QA ...
1
vote
3answers
689 views
jetty via apache mod_proxy
Using an Apache virtualhost and mod_proxy I want to access a java application (myapp) available in a jetty instance on port 8080.
With ProxyPass / localhost:8080/ on my apache virtualhost ...
1
vote
1answer
361 views
MediaWiki installed on virtual server accessed through Apache ProxyPass
Note: where you will see "xttp" actualy is "http" but stackoverflow rules do not allow me to use more than 1 hyperlink in one post because I do not have enough "credit" to do that :)
...
1
vote
1answer
3k views
Apache - Tomcat ProxyPass VirtualHost - Context Path
I have a problem configuring apache tomcat ProxyPass directive for two applications that have two different Contaxt Pathes in tomcat. The tomcat is running behind an apache and I use the apache to ...
1
vote
2answers
769 views
Grails URL's with Tomcat/Apache ProxyPass
Grails tends to write out the URL for everything that uses its tags as /appName/whatever. For instance, if I use the tag:
<g:javascript library="jquery"/>
the resulting tag is
<script ...
1
vote
0answers
887 views
Apache 2.2 reverse proxy not working
I am trying to set up my apache (version 2.2.3) to work as reverse proxy. I configured apache on public server as it is described at http://www.askapache.com/htaccess/reverse-proxy-apache.html
...
1
vote
3answers
3k views
Using ProxyPass for pages but not images
As a result of horrible, horrible errors, we've changed how we connect Apache to Tomcat. We were using mod_jk:
JkMount /path ajp13
Now we're using mod_proxy_ajp:
ProxyPass /path ...
0
votes
0answers
19 views
Nginx proxy_pass to another upstream based on request uri
I have two upstreams named frontendcluster and admincluster i want to do this:
if the request uri contains /admin or /upload or the request method is POST then use admincluster. else proxy pass to ...
0
votes
1answer
102 views
Apache ProxyPass - Exclude Files Regex
I'm trying to exclude all files starting with "dgg-" and ending in ".xml", example: dgg-file-1.xml from using the apache proxy.
This works:
ProxyPass /myfile.xml ! # single file
ProxyPass /directory ...
0
votes
1answer
115 views
configuring ProxyPass on .htaccess to show tomcat through apache http server
I have an Apache HTTP server runing on an open 80 port and a Tomcat server running on 8080 closed port.
I can get internally the tomcat webpage using lwp-request 127.0.0.1 8080.
I don't have access ...
0
votes
0answers
120 views
Java Web Service : How to change the WSDL port location in the client side with JAX-WS (without Axis)
I have a C# web service deployed on a remote server where the public adress is a kind of [http://196.168.0.28/proxyWS/MyService/MyService.asmx?WSDL. We use an Apache ProxyPass for security that ...
0
votes
1answer
82 views
How to rewrite a form action on the “Help Page” of an ASP.NET web service
For normal .aspx pages I can just put a Form.browser file into the App_Browsers directory like the following.
<browsers>
<browser refID="Default">
<controlAdapters>
...
0
votes
0answers
45 views
setting up apache behind a forward proxy
I have an Internet connection which is behind a forward proxy.I have to use the proxy server ip address & port No. to connect to the internet.I have installed apache web server in my machine.The ...
0
votes
1answer
231 views
Proxy Pass: follow redirect on server
I'm using Apache ProxyPass to pass some requests from my server (1) to another (2). This works fine for most requests, but when server 2 processes a POST request and sends a redirect header, this is ...
0
votes
1answer
615 views
Nginx user subdomains, should I proxy_pass?
I am trying to setup user subdomains, serving content from specific folders: www.example.com/username served from username.example.com (just like github pages).
I've looked at Nginx rewrites, but I ...
0
votes
1answer
685 views
Apache proxypass using a variable URL with interpolate
I'm trying to set up an apache server for test purposes. The goal is to simulate a loadbalancer. The part we're trying to simulate is simply accepting a clients secure httprequest and pass it on (via ...