public
Description: S3 Proxy for Google App Engine
Homepage: http://shrub.appspot.com
Clone URL: git://github.com/gabriel/shrub.git
gabriel (author)
Sun Aug 09 17:03:57 -0700 2009
commit  c1522f949748263a75724ebd8d2fe15e75a45d81
tree    a27265880616a4fdb09701c9bdc64c957fe84b76
parent  cf47d10b23cff31a0f271c1e080220d71fd8966f
shrub / app.yaml
100755 27 lines (20 sloc) 0.604 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
application: shrub
version: 1
runtime: python
api_version: 1
 
# /shrub is a reserved bucket so we have a path to serve assets (from GAE or s3).
# All non-S3 routes should fall under that to avoid conflicts with S3 buckets.
# Other reserved buckets include, /shrub-env and /test (for debugging and testing).
handlers:
  
- url: /test.*
  script: test.py
 
- url: /shrub
  static_dir: public/
 
- url: /favicon.ico
  static_files: public/favicon.ico
  upload: public/favicon.ico
  
- url: /crossdomain.xml
  static_files: public/crossdomain.xml
  upload: public/crossdomain.xml
 
- url: /.*
  script: main.py