> > 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. > > Personally would suggest using something like http://www.emailmeform.com/
so you dont need a script on your server. It sounds like it might be a bit complicated for your experience level. > So here are the quesions: > 1) How to configure YAML to enable memcache for all static content except > one sendmail script? > AppEngine, splits your files into two different systems. 'Dynamic' which can run scripts (depending on the runtime you choose) And static, which you have little control over. But this is setup by Google to be optimized for static files, so memcache wouldnt really help anyway. So your handlers, will keep static content, defined as 'static'. But direct the sendmail script to a dynamic handler. A script written in php/python/go or java. > 2) Is it possible to configure different caching headers for different > filetypes? > Segregate your content with multiple 'handlers'. Different extentions could match different handlers (using the expression in the 'url') > 3) What's the proper way of making redirects it GAE environment? > Setup the URL(s) to be handled by a dynamic instance. Then the instance can send what ever redirects it needs - based on your logic. > 4) 99% of my audience is from Moscow, Russia. Is there a way to somehow > move my app to the closest server? > Paid apps may be able to specify EU datacenter I beleive. But its not open to everyone yet. > -- 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.
