angularjs - how to configure X-Frame-Option in app.yaml -


i want set x-frame-option application applicable js files , html files. please provide syntax how configure in app.yaml. application uses "google app engine" , backend code in "python".

according documentation,

you can set http headers responses of static file or directory handlers. if need set http headers in script handlers, should instead in app's code.

example:

handlers: - url: /images   static_dir: static/images   http_headers:     x-foo-header: foo     x-bar-header: bar value 

Comments

Popular posts from this blog

sql server - Cannot query correctly (MSSQL - PHP - JSON) -

php - trouble displaying mysqli database results in correct order -

C++ Linked List -