Home > front end >  IIS 10.0 adding disallowed headers to responses on API calls
IIS 10.0 adding disallowed headers to responses on API calls

Time:09-21

I have an IIS 10.0 server, and I'm seeing that some disallowed headers [Pragma, Expires] are still getting added, but they are only being added to API endpoints, not when static content is getting retrieved. These headers are not being set in the code. I've followed the recommended approach to remove the headers from IIS (adding the remove element to configuration\system.webServer\httpProtocol\customHeaders), and when debugging, I do not see these headers in the HTTP response before it gets sent back to the caller. I would like to remove these headers from the response, but have no idea how to figure out where they are being set. Any pointers?

CodePudding user response:

To extend the comment above.

The key to troubleshoot such issues is to know the source of such headers, so enabling Failed Request Tracing is the quickest way.

If you find that the headers (such as ASP.NET and so on) are set by IIS default modules, you know that you should refer to IIS documentation to locate the settings and turn them off.

In your case, FRT reveals the headers come from a third party module, so you will need to check what settings the vendor provides in documentation.

Note that even if you cannot find vendor settings to turn them off, you might still be able to remove them in several ways such as removing such headers in URL Rewrite outbound rules.

  • Related