hi
You can check the resource from:
https://learn.microsoft.com/en-us/aspnet/core/security/docker-compose-https?view=aspnetcore-8.0 https://www.google.com/search?q=asp+net+core+docker+compose+https
hi
Try "SelfUrl": "https://{0}.authserver.domain.local:44319",
or "SelfUrl": "https://{{tenantName}}.authserver.domain.local:44319",
hi
What is the value of your options.Applications["MVC"].RootUrl
, This is the key url.
hi
You can use EF Core CLI to add a new migration file.
https://learn.microsoft.com/en-us/ef/core/cli/dotnet https://learn.microsoft.com/en-us/ef/core/managing-schemas/migrations/managing?tabs=dotnet-core-cli#add-a-migration https://learn.microsoft.com/en-us/ef/core/managing-schemas/
You should have some migration files on 8.1.4
Then you can add a new migration file after upgradeing to 8.2.0
hi
Can you try to add the code below to all your backend projects?
public override void ConfigureServices(ServiceConfigurationContext context)
{
context.Services.Replace(ServiceDescriptor.Transient<IEmailSender, MailKitSmtpEmailSender>());
}
hi
You can change the MySQL setting and try again.
https://dev.mysql.com/doc/refman/8.4/en/too-many-connections.html
https://stackoverflow.com/questions/19822558/how-to-set-max-connections-in-mysql-programmatically
https://www.ionos.com/digitalguide/websites/web-development/solve-mysqlmariadb-too-many-connections-error/