Install HAproxy console for environments with internal ONLY IP addressing
yum install haproxy
mv /etc/haproxy/haproxy.cfg /etc/haproxy/haproxy.cfg.bak
global log /dev/log local0 log /dev/log local1 notice chroot /var/lib/haproxy stats socket /run/haproxy/admin.sock mode 660 level admin stats timeout 30s user haproxy group haproxy daemon ca-base /etc/ssl/certs crt-base /etc/ssl/private ssl-default-bind-ciphers EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH ssl-default-bind-options no-sslv3 tune.ssl.default-dh-param 2048 defaults log global mode http option httplog option dontlognull timeout connect 50000 timeout client 50000 timeout server 50000 frontend http bind 162.x.x.x:80 bind 162.x.x.x:443 ssl crt /etc/ssl/console.servarica.com/console$ mode http option http-server-close http-request replace-value Cookie __utma.* ; use_backend %[capture.req.uri,map(/home/mapper/randomtobackendmap.map)]$ default_backend www
backend www balance roundrobin option httpclose option forwardfor
server www 127.0.0.1:80 backend xen3 balance roundrobin option httpclose option forwardfor server www 10.1.1.x:80
The important part above is the last paragraph which is your internal server declaration along with the SSL declaration in the first part. Keep in mind that SSL needs to be valid and obtained by official SSL certificate authority
Install Python script
yum install python yum -y install python-pip pip install flask pip install expiringdict
http://www.xenmodule.com/app.txt
systemctl start haproxy ; systemctl enable haproxy
eg: nohup python script.py