New answers tagged reverse-proxy
0
votes
NGinx Proxy_Pass config for subdomains and ports
Has you checked NGINX error logs?
Verify that all virtualhost are running on their respective ports or try to adding health checks for your backend services, but maybe the intermittent issues with ...
2
votes
Accepted
HAProxy - Keep path in url - acl
The problem here is that your backend (grafana) doesn't know anything about the path prefix, so when it generates urls, they will be relative to / (so, /login, /api, etc).
You need to tell grafana ...
0
votes
How to stop nginx 301 auto redirect when trailing slash is not in URI?
From Stack Overflow > Nginx causes 301 redirect if there's no trailing slash:
In your server { } block, add absolute_redirect off; like so:
server {
listen 80;
server_name localhost;
...
2
votes
Proxmox server connection to itself
The issue here seems to be that you're unable to connect to the proxy from the inside network due to a NAT issue.
It happens the same with firewalls and inside clients unable to connect to the VPN ...
0
votes
Apache reverse proxy websockets correct way
I'm feeling like my config on Server A is simply forwarding the connections to Server B instead of doing anything itself, and Clients directly connect to Server B at the end which isn't ideal.
Your ...
0
votes
Risks of enabling nginx upstream keepalive
I ran in to one "risk" with using keepalive connections recently, so I'll post it here in case it helps inform some other folks dealing with NGinx configuration.
I was introducing a proxy ...
1
vote
How can I get nginx not to override x-forwarded-for when proxying?
In case anyone would encounter this issue. Here is what I learned after many hours of searching.
onlyoffice running inside docker will nowerdays redirect anything that goes to port 80 (http) to port ...
Top 50 recent answers are included
Related Tags
reverse-proxy × 3247nginx × 1652
apache-2.2 × 527
apache-2.4 × 383
proxy × 353
ssl × 247
proxypass × 177
docker × 143
https × 134
iis × 126
load-balancing × 126
mod-proxy × 126
haproxy × 122
rewrite × 110
apache2 × 107
linux × 105
http × 105
cache × 99
web-server × 90
ubuntu × 88
node.js × 80
virtualhost × 78
tomcat × 78
varnish × 74
squid × 67