Hey
i have a porblem securing my node-red Admin and UI separate.
I want to have a secure Ui Dashboard and a different Admin user for the AdminPanel.
I used the following settings and if I log in the AdminPanel every thing works fine. But if I go to the Dashboard first I can't login to the AdminPanel , no error message is displayed and the login form will not disappear
What am I doing wrong?
httpAdminRoot: '/admin',
httpNodeRoot: '/app',
ui: { path: "/" },
adminAuth: {
type: "credentials",
users: [{
username: "admin",
password: "xxxx",
permissions: "*"
}]
},
httpNodeAuth: {user:"admin",pass:"xxxx"},