We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be better security if SPIK Nexus sends no-cache headers as part of its RESTful API responses.
Something along these lines for ALL API responses:
w.Header().Set("Cache-Control", "no-store, no-cache, must-revalidate") w.Header().Set("Pragma", "no-cache") w.Header().Set("Expires", "0")
The text was updated successfully, but these errors were encountered:
Add cache invalidation headers to API responses (spiffe#123)
f1ab64e
Signed-off-by: muhammet.arikan <[email protected]>
Merge pull request #124 from marikann/feature/add-cache-invalidation-…
c0b2e0a
…headers Add cache invalidation headers to API responses (#123)
No branches or pull requests
It would be better security if SPIK Nexus sends no-cache headers as part of its RESTful API responses.
Something along these lines for ALL API responses:
The text was updated successfully, but these errors were encountered: