Ad
rokkotnik
asked Mar 15 2020
Related tutorials in CentOS Nginx load balancer two different apps
Related forums in CentOS Nginx load balancer two different apps
A common misconfiguration is that the 'session.save_path' directive is not pointing to a valid directory.
Jun 15 2019
CentOS Nginx load balancer two different apps
Hi,
I am trying to configure my web and mail server and i got following setup:
But since i got only one public IP i wanted to create load balancer using nginx.
I saw configuration toturial on this site, that i need to add:
upstream backend {
server 192.168.1.211;
server 192.168.1.212;
}
and then proxy_pass: http://backend inside location, but i cant get server B to work on Http or https.
Anyone can help please ?