OrleansDashboard icon indicating copy to clipboard operation
OrleansDashboard copied to clipboard

Basic auth not working - Orleans 7

Open iamsamcoder opened this issue 1 year ago • 6 comments

Hello,

I've recently upgraded to Orleans 7.1.0 and I've updated Dashboard to 7. 2.0. I've configured the dashboard to use basic auth with username and password.

Program.cs configuration

siloBuilder.UseDashboard(options =>
                {
                    options.Username = "username";
                    options.Password = "password";
                });

Startup.cs configuration

app.Map("/dashboard", x => x.UseOrleansDashboard());

Dashboard works, but doesn't require the password. I'm running this locally in docker and live in Azure container apps.

Am I missing something for the configuration to require username and password?

iamsamcoder avatar Mar 06 '23 22:03 iamsamcoder