@PADE ,
Your application sounds like a pretty typical access controlled HMI. You don't need multiple webservers. Just modify the client behavior, programmatically, based on the user. One technique is to have an enumeration for each access level. If the access level is above a certain threshold, certain elements become visible/interactive etc. Use the element state variables (Invisible, Deactivate Inputs) to control visibility and interactivity.
Use the login/logout events to trigger additional logic. For example, when your operator logs in, use that event to trigger your screen design change.
... View more