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.
Questions tagged [mod-proxy]
689 questions
0
votes
0 answers
Apache mod_proxy redirect
I have 2 domains, both on the same server. One of them is running a website. I have a subpage of that website that I want to map the other domain to. The goal is to have the domain www.something.com "invisibly" map to…

Michal
- 101
- 1
0
votes
0 answers
apache proxy an URI to a backend server
I want to proxy one URI of my domain to a specific backend server.
I have a public domain name external.lan and a private one lets say internal.lan.
I want http://external.lan/gogs be served by internal server.
Here is my apache configuration…

philippe
- 2,303
- 4
- 32
- 53
0
votes
0 answers
Apache load balancer traffic halted for 60 to 90 secs when loadbalancer worker network is down
Performing robustness check and in system , we have two tomcat workers are set like below. and when connection was broken (intentionally)for one worker , apache hangs and not sending traffic to other working worker. After 90 secs its started sending…

mdreddy
- 1
- 1
0
votes
1 answer
httpd: Connection attempts using mod_proxy:
On my debian 11 based mailserver I noticed some entries in my daily logs:
--------------------- httpd Begin ------------------------
Connection attempts using mod_proxy:
161.35.188.242 -> leakix.net:443: 1 Time(s)
92.118.39.30 -> example.com:443: 2…

tillewolle
- 11
- 1
0
votes
0 answers
Apache web server - How to serve custom error page when 401 returned from proxypass site
So I have an apache web server with the below rule:
ProxyPass /auth https://my-auth-server.azurewebsites.com/auth keepalive=On
ProxyPassReverse /auth …

overrrflowww
- 3
- 2
0
votes
1 answer
Apache httpd: mod_proxy_hcheck URL based HTTP basic authentication
I am trying to use mode_proxy_hcheck to do health checks and failover for an application that requires HTTP Basic authentication.
BalancerMember http://username:password@hostname1 hcmethod=GET hcexpr=expression…

theeGwandaru
- 101
- 1
0
votes
0 answers
Lighttpd WARNING: unknown config-key: proxy.forwarded (ignored)
I encountered an error that proxy.forwarded is an unknown key I already enabled mod_proxy on my configuration. Here is my config
server.modules = (
"mod_access",
"mod_accesslog",
"mod_alias",
"mod_compress",
"mod_redirect",
…

Falcon Ryu
- 101
- 1
0
votes
0 answers
Drop connection without sending packets
I would like to prevent default virtual host behaviour by dropping the connection, so that visitors who navigate to my server via IP or fqdn that isn't included in my virtual hosts get no indication that any web server exists (other than seeing open…

jackar
- 11
- 2
0
votes
0 answers
reverse proxy Apache that redirects filtering by ip and path
I am trying to create a reverse proxy with apache that if it receives a request with /thisismypath as path and the ip address that make that request is 192.168.2.12 the it should redirect to 192.168.1.40. If any other ip make that same request with…

P00
- 1
- 1
0
votes
1 answer
POST requests fail after updating Apache load balancer ("empty stream")
We have an apache configured as a load balancer (mod_proxy_balancer afaik) distributing the load to several wildfly application nodes. This was working fine until we updated the operating system from debian buster to bullseye.
The OS update…

Lonzak
- 101
- 3
0
votes
0 answers
502 on redirects from http to https on GCP
I'd like to start by saying that I know there are quite literally hundreds of topics about this, which I've followed before to get things working. Yet, this configuration, which I had working for months, its not working in a different…

Jetto Martínez
- 151
- 8
0
votes
2 answers
Can not access Tomcat servlet using httpd ajp proxy in Docker
Docker, httpd and tomcat is new to me.
What I want to do: Access tomcat servlet through httpd ajp reverse proxy.
I am making two containers under same bridge network, one runs httpd, another tomcat.
Problem: I can not access tomcat through httpd.…

Mirza Prangon
- 3
- 3
0
votes
3 answers
Apache reverse proxy - URL without / is refused
I use reverse proxy to show backend server content for a subdomain.
The subdomain.mydomain.com (server A) should display content of server with IP 123.123.123.123 port 1111 (server B).
Virtual host of subdomain.mydomain.com (server A):

klor
- 344
- 4
- 8
- 25
0
votes
1 answer
SSL ProxyPass for REST API requests
A production server uses a lot of AJAX calls and is on a different domain from the REST API server and so ProxyPass has been used successfully in httpd.conf to enable communication.
There's now a requirement to add secure login to the site. A SSL…

Mark White
- 61
- 1
- 5
0
votes
1 answer
Apache2 Virtual Host Proxy Forward
Hi all I am trying to use a virtual host to forward streaming.fusion.tk to my internal emby server form my webserver.
I have setup a config file called streaming.conf in /etc/apache2/sites-available/
ServerName…

Fusion
- 11
- 1