0
votes
2answers
55 views

Apache as reverse proxy more resources

I'm moving a big directory of images from an HTTP server to another and I cannot change any configuration. I would like my user don't even suppose that a moving in progress. So I thought to add an ...
0
votes
0answers
60 views

Apache reverse proxy on windows -Internal webpage not found error

I have setup the Apache reverse proxy version 2.4 on windows. This is my http.conf file configuration http://pastebin.com/KC1TAkJ2 . I am able to get the internal server webpage when i typed this ...
0
votes
0answers
132 views

Apache mod_rewrite reverse proxy drop requests

I'm using Apache 2.2.3 as a front end for my application. I use mod_rewrite to reverse-proxy a path to a backend server. That works wonderfully, most of the time. But sometimes the requests are not ...
5
votes
2answers
467 views

Apache mod_substitute on HTTP requests to reverse-proxied host

I have the following setup: Printer #1 on LAN Printer #2 on LAN Internet facing Debian Apache 2.2 web server at server-external-ip that I want to use as an IPP gateway to the two printers The two ...
1
vote
0answers
112 views

Apache: Setting up a reverse proxy configuration with SSL with url rewriting

There is a host: secure.foo.com that exposes a webservice using https I want to create a reverse proxy using Apache that maps a local http port on a server internal.bar.com to the https service ...
1
vote
1answer
93 views

Location Directive overrides mod_wsgi script alias mount

So I'm stymied. I have a webapp that uses Django and I'm using mod_wsgi to integrate it with apache. However, another person has a directive on the same machine that proxies to another server. The ...
2
votes
2answers
668 views

Apache Rewrite or Proxy to internal server

First off, this is my first go at apache, so please forgive my beginingingismness :) My basic setup is as such: mysub.domain.com gets sent to my static IP via a CNAME entry at godaddy's DNS manager. ...
0
votes
1answer
408 views

Apache ProxyPass/RewriteRule with p flag: Return no content when response has multi-part content type i.e.images

This is a continuation of a previous question which has been implemented with a little change. Following is the structure I am going to talk about. My goal is to create the Tunnel/Proxy. ...
1
vote
0answers
94 views

Porting rewrite rule for Diaspora from Apache to Cherokee [closed]

I'm absolutely new to any kind of server administration and there shouldn't be any working part on my diaspora pod... but I can follow manuals! :) Please help me to leave facebook behind and become a ...
1
vote
1answer
800 views

Apache proxy pass in nginx

I have the following configuration in Apache: RewriteEngine On #APP ProxyPass /abc/ http://remote.com/abc/ ProxyPassReverse /abc/ http://remote.com/abc/ #APP2 ProxyPass /efg/ ...
1
vote
1answer
345 views

Apache2 - Rewriting when using reverse proxy

Background I want to set up utorrent with webui on my server. Problem Utorrent sets up its own webserver which, by default, listens on port 8080. The ui is then accessed by accessing ...
6
votes
4answers
4k views

Controlling Nginx proxy target using a cookie?

I'm trying to convert a reverse proxy using an interesting Apache mod_rewrite setup to use Nginx instead (due to external concerns we are moving from Apache to Nginx, and most everything works fine ...
1
vote
2answers
2k views

Alias a Virtual Directory or Application as Root on IIS 7

Our current IIS setup as two applications running on different paths at (for example) http://server/sub-a and http://server/sub-b. I want to alias http://server/sub-a as root so that just going to ...
2
votes
1answer
595 views

Reverse Proxy (mod_rewrite) and Rails (absolute paths)

I have front end rails app, that reverse proxies to any of a number of backend rails apps depending on URL, for example http://www.my_host.com/app_one reverse proxies to ...
0
votes
1answer
1k views

Apache, Reverse Proxy, Rewrite, HTTPS

I am creating a Reverse Proxy box with apache and i have some questions about that: How can i load some files, say robots.txt, off the reverse proxy box instead of the actual host? Would it be wise ...
1
vote
1answer
930 views

Apache, Nginx, ReverseProxy, URL Rewriting

Can i configure apache reverse proxy server so that it load some of files from local document root? Like may be static files? Can i used Nginx as a alternate for Apache (mod_proxy, mod_proxy_html, ...
0
votes
1answer
1k views

Setting up Wildcard subdomain (with reverse proxy) on apache 2.2.3

Hey All, What I am trying to achieve is the following: I want to have numerous subdomains such as abc.domain.com redirect to a url such as www.domain.com/something?subdomain=abc Since I am ...