Advertisement
CSArchiveNet

Website Hosting

Mar 6th, 2013
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.50 KB | None | 0 0
  1. application: website-example
  2. version: 1
  3. runtime: python
  4. api_version: 1
  5.  
  6. default_expiration: "7d"
  7.  
  8. error_handlers:
  9. - file: error/default_error.html
  10.  
  11. - error_code: over_quota
  12.   file: error/default_error.html
  13.  
  14. handlers:
  15. - url: /(.*\.(gif|png|jpg|ico|js|css|swf|xml))
  16.   static_files: \1
  17.   upload: (.*\.(gif|png|jpg|ico|js|css|swf|xml))
  18.  
  19. - url: /(.*\.html)
  20.   static_files: \1
  21.   upload: index.html
  22.  
  23. - url: /robots.txt
  24.   static_files: robots.txt
  25.   upload: robots.txt
  26.  
  27. - url: /.*
  28.   script: main.p
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement