Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 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 | 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. | 3 # BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 application: dartlang-api | 5 application: dartlang-api |
| 6 version: 17 | 6 version: changeme |
|
nweiz
2012/07/25 18:50:49
What's up with this?
sethladd
2012/07/25 20:48:45
We roll the version on every deploy. I could leave
nweiz
2012/07/25 20:58:03
What do you mean by "roll the version"? Why isn't
sethladd
2012/07/25 21:02:13
because both kathy and I deploy, so we use sethlad
| |
| 7 | 7 |
| 8 runtime: python27 | 8 runtime: python27 |
| 9 api_version: 1 | 9 api_version: 1 |
| 10 threadsafe: true | 10 threadsafe: true |
| 11 | 11 |
| 12 #default_expiration: "2h" | 12 #default_expiration: "2h" |
| 13 | 13 |
| 14 handlers: | 14 handlers: |
| 15 | 15 |
| 16 - url: /dom.* | 16 - url: /.* |
| 17 script: scripts.redirector.application | 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 |