Markdown Test

Capital test 2

Italic Test

# clear journalctl
sudo journalctl --rotate
sudo journalctl --vacuum-time=1s

1. Load balancer:

nginx load balancer config
http {
    upstream web_cluster {
        server 192.168.6.101:8080;
        server 192.168.6.102:8080;
    }

    server {
        listen 80;

        location / {
            proxy_pass http://web_cluster;

            proxy_set_header Host $host;
            proxy_set_header X-Forwarded-For $remote_addr;
        }
    }
}