| OLD | NEW |
| (Empty) | |
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 # for details. All rights reserved. Use of this source code is governed by a |
| 3 # BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 application: dartlang-api |
| 6 version: 17 |
| 7 |
| 8 runtime: python27 |
| 9 api_version: 1 |
| 10 threadsafe: true |
| 11 |
| 12 #default_expiration: "2h" |
| 13 |
| 14 handlers: |
| 15 |
| 16 - url: /dom.* |
| 17 script: scripts.redirector.application |
| 18 |
| 19 - url: /(.*\.png) |
| 20 static_files: static/\1 |
| 21 expiration: 1d |
| 22 upload: static/(.*\.png) |
| 23 |
| 24 - url: /(.*\.ico) |
| 25 static_files: static/\1 |
| 26 expiration: 7d |
| 27 upload: static/(.*\.ico) |
| 28 |
| 29 - url: /(.*\.html) |
| 30 static_files: static/\1 |
| 31 expiration: 2h |
| 32 upload: static/(.*\.html) |
| 33 |
| 34 - url: /(.*\.css) |
| 35 static_files: static/\1 |
| 36 expiration: 1d |
| 37 upload: static/(.*\.css) |
| 38 |
| 39 - url: /appcache.manifest |
| 40 static_files: static/appcache.manifest |
| 41 upload: static/appcache.manifest |
| 42 mime_type: text/cache-manifest |
| 43 |
| 44 - url: (.*)/ |
| 45 static_files: static\1/index.html |
| 46 upload: static/index.html |
| 47 |
| 48 - url: / |
| 49 static_dir: static |
| OLD | NEW |