[google-appengine] Re: app.yaml - how to serve ALL files as they are..?

2009-04-18 Thread Wooble
I'd think this would work (but I haven't tried it): - url: / static_dir: static Note: this requires all of your site files to be in a subdirectory of your application, since for a static_dir directive you need to specify a relative directory. I'm not sure if static_dir: . would work. Try it

[google-appengine] Re: app.yaml - how to serve ALL files as they are..?

2009-04-17 Thread 风笑雪
No simple way to do it. You need specify each of them. But you can use static_dir or wildcard character(*) to set a common handler. 2009/4/17 jago java.j...@gmail.com Hi, How do I set up the app.yaml that it uploads and serves basically all files as they are? jg