| OLD | NEW |
| 1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2014, 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 runtime: custom | 5 runtime: custom |
| 6 vm: true | 6 vm: true |
| 7 api_version: 1 | 7 api_version: 1 |
| 8 threadsafe: true | 8 threadsafe: true |
| 9 module: default | 9 service: default |
| 10 | 10 |
| 11 handlers: | 11 handlers: |
| 12 - url: /static | 12 - url: /static |
| 13 static_dir: static | 13 static_dir: static |
| 14 secure: always | 14 secure: always |
| 15 | 15 |
| 16 - url: /(.*\.ico) | 16 - url: /(.*\.ico) |
| 17 static_files: static/\1 | 17 static_files: static/\1 |
| 18 expiration: 7d | 18 expiration: 7d |
| 19 upload: static/(.*\.ico) | 19 upload: static/(.*\.ico) |
| (...skipping 15 matching lines...) Expand all Loading... |
| 35 | 35 |
| 36 automatic_scaling: | 36 automatic_scaling: |
| 37 min_num_instances: 2 | 37 min_num_instances: 2 |
| 38 max_num_instances: 4 | 38 max_num_instances: 4 |
| 39 | 39 |
| 40 skip_files: | 40 skip_files: |
| 41 - ^.*/packages.*$ | 41 - ^.*/packages.*$ |
| 42 - ^.*\.dart$ | 42 - ^.*\.dart$ |
| 43 - ^\.git/.*$ | 43 - ^\.git/.*$ |
| 44 | 44 |
| OLD | NEW |