Hi everyone! I want to deploy a v2 of my simple static website to Google App Engine. I don't know Python / Yaml, but I'm skilled enough to read docs and copy/past/modify bits of code. I have already successfully deployed my project here: http://www.centremonta.ru/ using a very simple YAML
application: xxxxxxxx version: 1 api_version: 1 runtime: python default_expiration: "300d" handlers: - url: (.*)/ static_files: static\1/index.html upload: static/index.html - url: / static_dir: static Now I want to improve it: 1) I want to add a mailsend python script which gets some params from CGI (post) and sends mail, then prints some html back to browser. 2) My website is all static except this mailsend, so I want to serve it as fast as possible. Thought of using memcache for it. 3) Sometimes I need to do 301 redirects So here are the quesions: 1) How to configure YAML to enable memcache for all static content except one sendmail script? 2) Is it possible to configure different caching headers for different filetypes? 3) What's the proper way of making redirects it GAE environment? 4) 99% of my audience is from Moscow, Russia. Is there a way to somehow move my app to the closest server? Thanks! -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/groups/opt_out.
