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

Sailsjs behind Apache2 proxy logging socket errors

I get the following log lines with each connection: info: handshake authorized bQumvCf9KtcMVUoXcXG5 warn: websocket connection invalid info: transport end (undefined) And the Apache2 error log shows this at the same time: [Sun Apr 06 15:09:16…
RSAdmin
  • 419
  • 1
  • 6
  • 20
0
votes
1 answer

Can I configure Apache on my laptop to forward to real site for all requests except one?

I want to run some local tests on a site I have. The site is accessible at www.mysite.com. I want one particular file to be fetched from my local machine. I thought I could maybe achieve this by installing Apache locally adding 'localhost…
user265330
  • 2,533
  • 6
  • 31
  • 42
0
votes
1 answer

Can Apache Httpd as a Reverse Proxy forward the same URL to two web servers

I am trying out a new REST service which implements the functionality of a REST service that we already have in place, just more efficiently. So as to check that everything is working correctly before putting it live I would like to split the…
Scala Enthusiast
  • 399
  • 8
  • 18
0
votes
2 answers

apache http server load balancer monitoring

I configured apache http server to act as load balancer using mod-proxy module BalancerMember http://192.168.0.222:8080/geoserver/wms loadfactor=8 BalancerMember http://192.168.0.14:8081/geoserver/wms…
Anas A
  • 199
  • 4
  • 19
0
votes
2 answers

URL rewriting to replace URLs of original site

I have a site hosted on OpenShift, with a URL like https://myproject.myname-rhcloud.com/myapp. I deploy there via git, it works fine, but the URL is not exactly easy to remember. Then I bought a domain name (say, http://www.first-last.fr), with a…
Emmanuel
  • 13,935
  • 12
  • 50
  • 72
0
votes
1 answer

Tomcat fails on first request in combination with jsvc

I have a web application where the first request may take a few seconds as some singletons are initialised. I've used the mod_proxy and jsvc construction mentioned in this question and described on this page to connect apache with tomcat (data is…
Roalt
  • 8,330
  • 7
  • 41
  • 53
0
votes
1 answer

Failed to compile Apache from source with only Mod_Proxy

I am trying to compile apache from source with only module "proxy and rewrite". Here is what I used as my configure sudo ./configure --disable-actions --disable-asis --disable-autoindex --disable-cgi --disable-cgid --disable-charset-lite…
James Little
  • 601
  • 7
  • 24
0
votes
1 answer

Serve http server behind an Apache https Proxy

It seems that it is possible to get Apache server to Proxy and Manage SSL handshake on https requests and service them as 'http' thru another server behind it. I have configured an apache server for ProxyPass using following…
user1055761
  • 1,071
  • 1
  • 12
  • 28
0
votes
1 answer

After using mod_proxy the web application is no more accessible from other computer

I used apache proxy support in tomcat to remove the port number from url. Here is what I did, In http.conf file I added LoadModule proxy_module mod_proxy.so ProxyPass /alfresco http://localhost:8080/alfresco ProxyPassReverse /alfresco …
samnaction
  • 1,194
  • 1
  • 17
  • 45
0
votes
1 answer

mod_proxy to another directory / user in the same server?

I currently have a small team (2 people) working on project one of my site: http://www.example.com/one/ I want to be able to assign more teams to future projects, such as team 2 for project two: http://www.example.com/two/ It's sort of like how big…
datasn.io
  • 12,564
  • 28
  • 113
  • 154
0
votes
1 answer

Uploading with curl with Apache proxy pass

I have a scenario when an external client uploads a zip file to my application via curl. The application is on jboss server behind Apache with proxy pass. So the request goes like this : curl POST -> Apache (Proxy pass) -> Jboss (some servlet…
simonC
  • 4,101
  • 10
  • 50
  • 78
0
votes
2 answers

BlazeDS Servlet not responding through Proxy

I have a problem using Flex with BlazeDS on a Tomcat 5.5 through a Proxy (Apache). I already searched for it but didn't find answers which solved my problem. I hope you guys can help me out. :-) Our scenario is the following: Flex-App using BlazeDS…
0
votes
1 answer

Apache 2.2 Mod Proxy ProxyPass behavior

I have a server server.example.com which serves Tomcat on port 80 via a ProxyPass/ProxyPassReverse to 8080 and a Drupal site on the same box at server.example.com:8001. If I enter in the port 8001 explicitly, the Drupal site behaves properly, but I…
GL2014
  • 6,016
  • 4
  • 15
  • 22
0
votes
1 answer

Go: relative http.Redirect behind Apache mod_proxy

I have a simple go server listening on :8888. package main import ( "log" "net/http" ) func main() { http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { log.Println("redirecting to foo") http.Redirect(w, r, "foo",…
Ilia Choly
  • 18,070
  • 14
  • 92
  • 160
0
votes
1 answer

Spring security not woking with apache proxy

I'm deploying a spring application to a tomcat7 server. It works ok, but when i try to set up an apache proxy in front of that spring security (authentication) does not work, it's always redirecting to the login page. The proxy configuration i'm…
roirodriguez
  • 1,685
  • 2
  • 17
  • 31