Problem securing my node-red Admin and UI separate

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"},

Is it because you are using the same user name for both the adminAuth and httpNodeAuth, whilst confusing the system by using different passwords?

Try changing the httpNodeAuth user name to "appAdmin".

What browser are you using? I seem to remember Safari has a known issue mishandling multiple authentication schemes on the same domain.

I already tried to use different usernames with no luck

yes, I am using Safari. Any change to avoid this problem?

Try a different browser?

No, we don't have a solution for it yet - Cannot use Admin and Dashboard the same time on Safari (MacOS and iOS) · Issue #2842 · node-red/node-red · GitHub

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.