I have a server with SSL enabled. It has caching enabled and fetches data
from an upstream server.
With SSL disabled, the downstream server reads and caches the data from the
upstream server very quickly -- as quickly as the upstream server can return
it. With SSL enabled, the downstream server fe
Hey Maxim,
Thanks so much for the very thoughtful and detailed response! Sorry for the
delay in getting back to you. I wanted to test all of this and then I got
busy at work and haven't been able to get back to it.
I've run a lot of tests on this and I'm seeing some success. :)
The first test
302 is redirect
Posted at Nginx Forum:
https://forum.nginx.org/read.php?2,283439,283445#msg-283445
___
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
Hi,
On 20/03/2019 06:18, waleedkh wrote:
Hi There, I have a question I am hoping someone can assist with.
I have a setup with a front end Nginx server on a public IP and two end
servers on private IP's.
I am using PHP-FPM fastcgi to do my upstream load balancing on NGinx.
I don't think that st
Hi,
I use proxy_pass to forward everything to a backend:
location / {
client_max_body_size 4M;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
proxy