I want to set all of my http headers responses to something like this:
response.headers["X-Frame-Options"] = "SAMEORIGIN"
I checked this question, but it only changes the header for one specific controller. I want to change all of my headers maybe in "before_request" function similar to the following logic. How can I do that?
@app.before_request
def before_request():
# response.headers["X-Frame-Options"] = "SAMEORIGIN"

所有评论(0)