I just tried several times to define character set for static files served from Google App Engine and failed miserably.
File does contain correct meta-equiv tag in header section of file:
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
But it's not being passed as header, browser needs to pick it up from the actual document.
Naturally if I use script (or Python Google App Engine program) then I can get it delivered correctly as response header.
Content-Type: text/html; charset=UTF-8
I tried to add to app.yaml file rows:
- url: /
static_files: root/create.html
upload: root/create.html
http_headers:
Content-Type: text/html; charset=UTF-8
But appcfg.py just tells me: Unexpected attribute 'http_headers' for object of type URLMap. in "9oxnet/app.yaml", line 41, column 5