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
Nginx: How to map the internal Ip addresses and proxy using ngrok without redirecting
I have two device which can be accessed only using internal network.
To access it externally i have installed nginx in raspberry device and added a redirect within nginx like
location /device1
{
return 301 http://192.168.0.1:80
}
Similarly…

Harsha
- 101
0
votes
0 answers
apache2 mod_proxy working awesome for http://urls and not for https://urls for curl requests
I have proxy setup with apache2 mod_proxy,
Note: I did not change proxy port
When I try curl -x http://proxyurl:80 -L http://destinationservice.com
Now it works, but when i try with https://destinationservice.com
curl -x http://proxyurl:80 -L…

indianwebdevil
- 220
- 1
- 6
-1
votes
2 answers
Running Jenkins with apache at /jenkins
I need to have access at the /jenkins path to the Jenkins server.
This is what I have now in my apache configuration:
ProxyPass /jenkins http://localhost:8080
ProxyPassReverse /jenkins http://localhost:8080
When I go to example.com/jenkins, I get…

DrKaoliN
- 109
- 1
- 6
-1
votes
1 answer
503 service unavailable. Apache crashes once in 7-10 days
I use Apache server on Ubuntu 14.04. In order redirect all requests from mypage.com to mypage.com:8080/myapp I use mod_proxy. My 000-default.conf looks as follows:
# The ServerName directive sets the request scheme, hostname…

user319757
- 1
- 1
- 1
-1
votes
1 answer
Reverse proxy for 2 domain with same context path
I have 2 different domains my.domain1.com and my.domain2.com and both have context name /app1 and this should be routed to two different backend boxes.
Problem here is my.domain1.com is running on VirtualHost _default_:443 and routing /app1 for…

krish3
- 1
- 1
-1
votes
1 answer
Apache & mod_proxy - What's wrong?
I am limited to one external IP on my server thus to run a mail server alongside with other Apache instance for web hosting, I believe I am forced to use mod_proxy.
I tried using mod_proxy in the past but I recall only to get it to work within my…

kyij
- 1
-1
votes
1 answer
Make Node.js app port not accessible on other domains
I have a server with Parallels Plesk as Server Control Panel, apache2 (with mod_proxy and mod_http_proxy), nginx and Node.js installed. On this server I have multiple domains and subdomains, but only one IP.
If I start a node-app on e.g. port 1337…

Timo Mämecke
- 13
- 2
-1
votes
1 answer
Reverse proxy 502 bad gateway
I have setup a subdomain to proxy my plesk panel, but when saving pages I am getting 502 Bad Gateway error instead of a completion message. I am running CentOS 6.
Here is my vhost.conf configuration for http://plesk.domain.tld/:
RewriteEngine…

Nahydrin
- 397
- 2
- 4
- 9
-1
votes
2 answers
Apache 2- Forward all the request from a specific Domain to a different Server in the intranet
I have two servers:
A (192.168.1.100:80)
B (192.168.1.200:8080)
Both are behind firewall and only port 80 is open and forwarded to server A.
People from outside type www.mydomain.com to access my web server A.
Now I would like all of the HTTP from…

jax
- 551
- 1
- 4
- 4
-1
votes
1 answer
SaaS style CNAMEs with Apache2
So I have a Rails application behind Apache. It is running via Thin, but all of this really doesn't matter. I'm having trouble getting my SaaS style CNAMEs working.
Currently I have two different types of accounts, one is paid type…
-1
votes
1 answer
How to verify mod_proxy settings?
I have an apache httpd (v2.2) in domain aaa.bbb.ccc with mod_proxy settings:
/team http://xxx.yyy.zzz/team
It just pass url in http://aaa.bbb.ccc/team to http://xxx.yyy.zzz/team.
My question is any external tool or any ways to verify my running…

qrtt1
- 269
- 1
- 5
- 13
-1
votes
1 answer
1 static IP, 2 web servers with 2 dns working with mod_proxy. Can I do the same with a CISCO router?
I have:
Cisco Router
One static IP.
2 different Web servers with 2 domain names
I have configured a Apache reverse proxy with mod_proxy and is working ok but....
I´m investigating if its posible to do the same with a CISCO router. The router must…

Luis
- 1
-2
votes
2 answers
Defaulting to a subfolder with Apache mod_proxy
I have this vhost configuration, but the 'Redirect' part does not seems to work. Is it wrong ?
ServerAlias in.example.com
ProxyRequests Off
ProxyVia Off
ProxyPass / http://127.0.0.1:9091/
ProxyPassReverse /…

Nison Maël
- 119
- 6
-3
votes
1 answer
Mod_proxy use same RAM as PHP server
I am just trying to understand something...
I have configured Apache+modsecurity+mod_proxy to act as a reverse proxy to 4 web backends.
This is not in production at this time and I was wondering what I have to do on the reverse proxy with the…

David R
- 1