Set network accessibility of Trilio GUI
Network Setup
pcs resource create dashboard_ip ocf:heartbeat:IPaddr2 ip=<new_vip> cidr_netmask=<netmask> nic=<new_nw_interface> op monitor interval=30s
pcs constraint colocation add dashboard_ip virtual_ipNginx setup
server { listen <dashboard_ip>:8000 ssl ; ssl_certificate "/opt/stack/data/cert/workloadmgr.cert"; ssl_certificate_key "/opt/stack/data/cert/workloadmgr.key"; keepalive_timeout 65; proxy_read_timeout 1800; access_log on; location / { proxy_set_header Host $host:$server_port; proxy_set_header X-Real-IP $remote_addr; proxy_pass https://<virtual_ip>:443; } } server { listen <dashboard_ip>:3001 ssl ; ssl_certificate "/opt/stack/data/cert/workloadmgr.cert"; ssl_certificate_key "/opt/stack/data/cert/workloadmgr.key"; keepalive_timeout 65; proxy_read_timeout 1800; access_log on; location / { proxy_set_header Host $host:$server_port; proxy_set_header X-Real-IP $remote_addr; proxy_pass https://<virtual_ip>:3001; } }
Limit the access of the Dashboard
Verify the accessibility as required
Last updated
Was this helpful?
