I'm trying to work something out and was hoping someone might shed some light for me.
When I have a remote UI and a single server I would normally configure my Remote UI to point to the server for panels, scripts, libs, pictures, etc.
I normally have something like this in the config file:
Code: Select all
[general]
proj_path = "//Server/Proj/Server"
proj_path = "C:/Proj/Client"
This means that if I update any panel or script, the client will automatically pick this change up.
Now, how would I do this in case of a redundant servers?
I've tried something like:
Code: Select all
[general]
proj_path = "//Server1/Proj/Server"
proj_path = "//Server2/Proj/Server"
proj_path = "C:/Proj/Client"
Any other ideas/pointers?