"Apache reverse proxy setup – why is my backend server not being reached?"
Hey folks,
So I set up an apache reverse proxy for my two domains, but the backend server just ain't responding.
Config looks fine (I think?):
```
ProxyPass / http://backend:8080/
ProxyPassReverse / http://backend:8080/
```
But all I get is 504 timeouts.
- Backend works fine if I hit it directly.
- Firewall’s open, ports are forwarded.
- Even tried adding `Allow from all` just in case.
Am I missing something dumb? Maybe DNS? Or does the apache reverse proxy need extra modules enabled?
Thanks in advance!
(Also, if anyone’s got a solid guide for multi-domain setups, drop a link. My Google-fu’s failing me today.)
Hey folks,
So I set up an apache reverse proxy for my two domains, but the backend server just ain't responding.
Config looks fine (I think?):
```
ProxyPass / http://backend:8080/
ProxyPassReverse / http://backend:8080/
```
But all I get is 504 timeouts.
- Backend works fine if I hit it directly.
- Firewall’s open, ports are forwarded.
- Even tried adding `Allow from all` just in case.
Am I missing something dumb? Maybe DNS? Or does the apache reverse proxy need extra modules enabled?
Thanks in advance!
(Also, if anyone’s got a solid guide for multi-domain setups, drop a link. My Google-fu’s failing me today.)
