ASP.NET API app running in a Docker Container is blocking only POST and PUT requests
I have the following set up for CORS in my .NET app: builder.Services.AddCors(options => { options.AddPolicy(name: rardkAllowOrigins, policy => { policy.WithOrigins("http://localhost:4200") .AllowAnyMethod(); }); }); When I'm hitting it from my app running on localhost:4200, only PUT and POST requests get…