Skip to main content

New answers tagged

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 ...
mrexojo's user avatar
  • 136
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 ...
larsks's user avatar
  • 46.8k
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; ...
Danny Beckett's user avatar
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 ...
Marco's user avatar
  • 1,819
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 ...
p0358's user avatar
  • 1
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 ...
Thomas Vaughan's user avatar
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 ...
rocky chan's user avatar

Top 50 recent answers are included