A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
AI OnAI Off
A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
Heres the correct web.config entry...
<location path="exampleUrl">
<system.web>
<authentication mode="None" />
<authorization>
<allow users="*"/>
</authorization>
<customErrors mode="Off"></customErrors>
</system.web>
</location>
Hello
We have a controller, /exampleUrl, that talks to an external API. Our frontend uses AJAX to talk to the controller.
The external API returns an error sometimes and then I want to send a 401 statuscode back to the frontend.
I've noticed that when sending back a 401 to the client, EPI hooks in and redirects me to the loginpage for the CMS...can I somehow turn this off?
I've added this to my web.config but it doesn't work...what am I missing?