So I have tried looking into this and as far as I've understood, in order to have multiple dashboards you would need multiple instances of Node-Red running on their own ports. I found a discussion on here about someones work with running multiple instances of Node-Red using pwm2.
Then end goal is to have a main webpage (which is its own dashboard) which gives the user some sort of information, but then can redirect them to their dashboard by clicking a button. In the end there would be an instance of node-red running for each user, and as far as I can tell, each of those instances would require having their own unique port. So as far as I understand, for 3 users, their urls would look something like
Home Page:
www.home.comUser 1:
www.home.com:1880/uiUser 2:
www.home.com:1881/uiUser 3:
www.home.com:1882/uiIm not sure if that is correct, but like I said that's what my understanding is for having multiple instances of node-red.
Is there another way of doing this so that the users could get to their dashboard simply by doing:
www.home.com/user1
If not, which I don't think is possible, would it be possible to create buttons on the home dashboard that either redirect or open a new window to the users dashboard?
I know the users could simply enter their url, but I am trying to make it as simple as possible on their end without having to memorize a port number and so on.
If I am misunderstanding anything please let me know, I'm new to node-red and nodejs in general, thanks in advance