Re: Where does the content get stored?

2019-03-21 Thread waleedkh
Ok thanks that is interesting. The way I configured Nginx on the front end is as such: [code] upstream ruby_application { ip_hash; server 10.0.0.21:9000 max_fails=1 fail_timeout=10s; server 10.0.0.22:9000 max_fails=1 fail_timeout=10s; [/code] and then [code] include fastcgi_params;

Where does the content get stored?

2019-03-19 Thread waleedkh
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. Each server is a clone of the original NGinx server with all th