Questions tagged [mod-proxy]

Module for the apache webserver with which apache can be used as proxy server. With this module apache can act as a regular proxy, or as a reverse proxy for upstream servers.

689 questions
0
votes
1 answer

Apache reverser proxy fails when submitting an HTML form

I folks, I want to build this scenario: one public server (openSuSE + Apache2 + Zope/Plone) and other private server with web applications (openSuSE + Apache2 + Zope/Plone). I want users think they are working only with one server (SSO is already…
osanchezmon
  • 103
  • 4
0
votes
1 answer

SSL certificate proxy redirect to port mongrel rails app help

I am trying to install a goddaddy ssl certificate on my dedicated plesk web server machine for a rails app that is working fine with non-https using mongrel cluster and apache mod_proxy to redirect the requests to the rails app. I have installed…
zanedev
  • 103
  • 1
  • 4
0
votes
1 answer

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 to allow loading of .htaccess at the proxy box?…
Shoaibi
  • 809
  • 1
  • 10
  • 28
0
votes
1 answer

Trying to install mod_proxy in Apache-Httpd-2.2.15

I have spent the afternoon trying to install the mod_proxy module into apache. I have tried ./configure --prefix=/opt/apache2 --enable-proxy --enable-proxy-http ./configure --prefix=/opt/apache2 --enable-module=proxy After it finishes installing,…
Dspace
0
votes
1 answer

Trouble with mod_proxy and mongrel_rails

I'm trying to set up a mod_proxy - mongrel combination, but somehow, apache/mod_proxy is unable to access mongrel locally. The following is my configuration for mod_proxy: ProxyRequests Off ProxyPreserveHost On ProxyPass…
fresskoma
  • 1,343
  • 1
  • 10
  • 13
0
votes
1 answer

Having trouble redirecting frevvo using mod_proxy

This question is similar to this: How to access webservers running on ports blocked on company's network? Basically, I'm using confluence and a plugin called frevvo. Confluence sits on port 8080 while frevvo sits on port 8082. I want to redirect…
MikiRei
0
votes
2 answers

Serving multiple sites with Apache Proxy Balancer

I have a situation where I have a load balancer set up with Apache2 and mod-balancer that is going to load balance two Apache2 web servers. I'd like my load balancer to be able to serve multiple sites but currently every virtual host I create seems…
Luke
  • 3,826
  • 8
  • 36
  • 40
0
votes
1 answer

mod_proxy_hcheck causes apache-2.4 startup-crash

I would like to create a load-balanced environment using Apache 2.4.43 (windows) and two Tomcats servers. Using the "mod_proxy_hcheck" module some basic healthcheck operations should be implemented, which are based on the official documentation:…
schlomm
  • 101
  • 2
0
votes
2 answers

Apache virtualhosts conf let wrong servername requests going through proxy

I have moved a server configuration to a new server and at the same time configured it with apache mod_proxy to access a gunicorn/django webserver (inside a docker container on port 8000). Previous server was using apache mod_wsgi to access django…
0
votes
1 answer

How to use mod_proxy to let my index of Apache go to Tomcat ROOT and be able to browse my other Apache sites

I am trying to use my Tomcat application (deployed at ROOT) to be viewed from Apache port 80. To do this, I used mod_proxy, since mod_jk made me try harder. I used sth like this in httpd.conf: Order deny,allow …
Dagvadorj
0
votes
1 answer

Apache module proxy_html not working

I have a Joomla 4 site running in a Ubuntu 22.04 server (hostname = web-02). The Internet facing web server running in a Ubuntu 20.04 server (hostname = web-01) has configured as a reverse proxy for several applications. Both servers run…
cpliu338
  • 111
  • 3
0
votes
1 answer

Apache - ProxyPass serve port only for one server name

I have a react app that listening to localhost:3939 Then, I configured a Virtualhost like this to proxy pass the port 3939 on https://test.example.com: ServerName test.example.com [SSL] ProxyPass /…
0
votes
1 answer

Change the script path in an Apache proxy handler

I'm developing my application with 2 containers: apache and php-fpm. Apache serves requests, and delegates PHP execution to the php-fpm container in its vhost: SetHandler "proxy:fcgi://myapp-php-fpm:9000" …
0
votes
1 answer

mod_proxy + mod_reqrite results in errors 502 or 502

I have working httpd config (reverse proxy) that forwards requests to proxy: Listen 443 https ServerName public-dns.example.org ServerAlias internal-hostname.internal ProxyPreserveHost On RewriteEngine On …
tomas
  • 123
  • 3
0
votes
0 answers

proxypass in apache to different URL path

Im new to apache/tomcat, im using httpd as proxy to my tomcat application and im trying to redirect my URL path from /xyz to /abc and Im using a http proxy to do so, can you please help with the config I need to use, When anyone access the url…