How can I disable the login screen in Elsa Studio 3.2.0 #286
Replies: 2 comments 2 replies
|
Not sure if this helps but the entire security can be disabled in Elsa by adding the below line to the Program.cs : Elsa.EndpointSecurityOptions.DisableSecurity(); |
|
Short answer: in the current Studio codebase, What the current code does:
So if you still see the login page, the usual causes are:
For a login-free Studio setup, I would verify these independently:
So the key point is: If you want, post the relevant part of your Studio |
Uh oh!
There was an error while loading. Please reload this page.
I have an Elsa Studio app, where I modified the server authentication to use api key, the key is sent with each request to Elsa server and the server accepts it. I need to disable to Elsa studio login screen... How can I do it?
I found a recommendation to use
builder.Services.AddShell(options => configuration.GetSection("Shell").Bind(options));
and modify appsettings with
"Shell": {
"DisableAuthorization": true
}
but it does not work, the login screen is still displayed.
thanks!
Jiri
All reactions