Skip to main content

All Questions

Tagged with
Filter by
Sorted by
Tagged with
0 votes
0 answers
772 views

NGINX proxy_pass: dump HTTPS requests as plaintext for debugging

I saw this answer from 10 years ago that's more or less about the same thing, except it involves HTTP rather than HTTPS: nginx: dump HTTP requests for debugging Is there a way to dump the encrypted ...
BangyStudios's user avatar
1 vote
0 answers
195 views

Apache HTTP proxy work for some destination ip and receive 502 Bad Request from other destinations

I've an HTTP proxy like this: Listen 8240 <VirtualHost *:8240> ProxyRequests On <Proxy "*"> SetEnv force-proxy-request-1.0 1 SetEnv proxy-nokeepalive 1 </Proxy> </...
alex's user avatar
  • 11
3 votes
1 answer
1k views

Multiple forwardfor commands in HAProxy config

In HAProxy, I would like to forwardfor everything except a few networks like below (multiple networks) frontend main bind myip:5356-60000 mode http option ...
Evyatar Saias's user avatar
0 votes
2 answers
1k views

Web Proxy to avoid port forwarding

Hello. I wonder if anyone could help me define which solution to use. I need to run a cloud server that acts as a proxy for HTTP requests, but on the web server side, I have no fixed IP or possibility ...
Diego Oliveira's user avatar
0 votes
0 answers
714 views

How to Nginx upstream on single server with additional IP addresses added to NIC?

I am having a single dedicated server (static IP) with two additional IP addresses added. When I run SSH with command: cat /etc/network/interfaces I got this result: auto lo iface lo inet loopback ...
Ho Thanh Cyberdelia Nhan's user avatar
1 vote
0 answers
3k views

HTTP 400 Bad Request on Apache/Windows whenever I use ProxyPass

I can't figure this one out! Been googling it for days, trying a bunch of different things. Whenever I put any Proxy forward, I get HTTP Error 400. This is Apache 2.4.25 running on Windows 2012 R2 ...
Jay Imerman's user avatar
1 vote
2 answers
2k views

Keep the host name requested by the client to pass to remote backend when using Varnish cache and proxy pass

I am having some trouble configuring Varnish and the online documentation is not very clear (for me at least). I currently have Varnish cache setup on a Ubuntu server. I tested varnish with a local ...
David_kav's user avatar
0 votes
0 answers
7k views

Nginx in reverse-proxy : Content-length mismatch for bigger CSS files

I have a web application (developped with the java framework Play) behind a nginx reverse-proxy. When I request the pages, the bigger CSS files (Bootstrap.min.css and easyui.css) don't load. Chrome ...
Pierre-Yves Le Dévéhat's user avatar
1 vote
1 answer
2k views

Reverse proxy for DoS / DDoS protection

after i search how to protect my website host server using GRE tunnels, some friends of this forum give me a tip to use Reverse Proxy that would be better. But i don't found any guide on how to ...
rodrigo286's user avatar
2 votes
1 answer
11k views

HTTPS reverse proxy using apache

I am using this apache configuration to set up a reverse proxy to a process running on the same machine, on port 8443, <Directory "/var/www/html"> Options +FollowSymLinks RewriteEngine ...
Sean Thoman's user avatar
2 votes
2 answers
121 views

Is this reverse proxy configuration possible

I will first try to describe the problem I have. Let's say I have two different http servers running on two different ports behind firewall on my local machine: SERVER1: http://localhost:8001 ...
PrimosK's user avatar
  • 121
3 votes
1 answer
3k views

Nginx not honoring must-revalidate

I want to use nginx as a caching reverse proxy. I also have a special requirement, which I thought could be accomplished with nginx. I am using Amazon s3 as origin server and I use signed urls to ...
The Shurrican's user avatar
0 votes
1 answer
1k views

Nginx byte-serving http requests

I know it is possible to use Nginx to spread requests over multiple web servers thus doing load balancing. This solution requires back-end servers having high bandwidth and is effective when dealing ...
webanck's user avatar
  • 11
5 votes
2 answers
1k views

Good way to reverse proxy through a forward proxy

I have an app that uses HTTP to connect to a server but does not support using an HTTP proxy and I must use an HTTP proxy to get to the server. I would like to set up a reverse proxy service (it's on ...
Olson's user avatar
  • 150
1 vote
3 answers
4k views

Alternative reverse proxy that supports HTTP 1.1, SSL, and keep-alive?

We are currently using nginx but we need to proxy upstream to haproxy using HTTP 1.1, which nginx's proxy module does not support. Is there an reliable, event-driven alternative to nginx that ...
user41356's user avatar
  • 279
1 vote
1 answer
959 views

Reverse proxy HTTP requests using database information

We have a slightly irregular web server: it serves user details based on the user's IP address. The user details are stored in several databases; each database stores information about a subset of ...
Andomar's user avatar
  • 953