I have application which I have hosted in IIS, I added it in SubDomain(AppCore) with separted ApplicationPoolThe Problem is .... It works fine in the server with the domain but outside Gives meThis page isn’t working right now "MyDomain" redirected you too many times.Try deleting your cookies.ERR_TOO_MANY_REDIRECTSNote that :-
The Project Works With Blazor and Dotnet 8
There are many projects in the same Domain but they work fine (DotnetFramework)
I already installed Hosting Bundle and Dotnet 8 SDKs
There are shared Configuration File with configEncKeyAes
This is my Cors
app.UseCors(builder =>{builder.AllowAnyOrigin().AllowAnyMethod().SetIsOriginAllowed(origin => true).AllowAnyHeader();});_
I tried Checking Permissions of the folder but another application folder in the same domain with different subdomain works with the same persmissions