| OLD | NEW |
| 1 application: swarmingserver | 1 application: swarmingserver |
| 2 module: default | 2 module: default |
| 3 version: 1 | 3 version: 1 |
| 4 runtime: python27 | 4 runtime: python27 |
| 5 api_version: 1 | 5 api_version: 1 |
| 6 threadsafe: true | 6 threadsafe: true |
| 7 | 7 |
| 8 instance_class: F4 | 8 instance_class: F4 |
| 9 automatic_scaling: | 9 automatic_scaling: |
| 10 min_idle_instances: 2 | 10 min_idle_instances: 2 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 script: main.app | 59 script: main.app |
| 60 secure: always | 60 secure: always |
| 61 login: required | 61 login: required |
| 62 | 62 |
| 63 # TODO(maruel): Move /internal/ to module-backend.yaml. | 63 # TODO(maruel): Move /internal/ to module-backend.yaml. |
| 64 - url: /internal/.+ | 64 - url: /internal/.+ |
| 65 script: main.app | 65 script: main.app |
| 66 secure: always | 66 secure: always |
| 67 login: admin | 67 login: admin |
| 68 | 68 |
| 69 # TODO(kjlubick): Consider moving elements/ to frontend/ so it is a bit more cle
ar what the folder is about. |
| 70 - url: /newui/ |
| 71 static_files: elements/build/index-build.html |
| 72 upload: elements/build/index-build.html |
| 73 secure: always |
| 74 http_headers: |
| 75 Strict-Transport-Security: "max-age=31536000; includeSubDomains; preload" |
| 76 X-Frame-Options: deny |
| 77 |
| 78 - url: /newui/(.+) |
| 79 static_files: elements/build/\1-build.html |
| 80 upload: elements/build/([^/]+)-build.html |
| 81 secure: always |
| 82 http_headers: |
| 83 Strict-Transport-Security: "max-age=31536000; includeSubDomains; preload" |
| 84 X-Frame-Options: deny |
| 85 |
| 69 - url: .* | 86 - url: .* |
| 70 script: main.app | 87 script: main.app |
| 71 secure: always | 88 secure: always |
| 72 | 89 |
| 73 builtins: | 90 builtins: |
| 74 - deferred: on | 91 - deferred: on |
| 75 - remote_api: on | 92 - remote_api: on |
| 76 | 93 |
| 77 inbound_services: | 94 inbound_services: |
| 78 - mail | 95 - mail |
| (...skipping 30 matching lines...) Expand all Loading... |
| 109 - .+\.orig$ | 126 - .+\.orig$ |
| 110 - .+\.rej$ | 127 - .+\.rej$ |
| 111 - .+\.zip$ | 128 - .+\.zip$ |
| 112 - ^(.*/)?#.*# | 129 - ^(.*/)?#.*# |
| 113 - .+~ | 130 - .+~ |
| 114 - .+\.py[co] | 131 - .+\.py[co] |
| 115 # Doc, readme and license. | 132 # Doc, readme and license. |
| 116 - ^doc/ | 133 - ^doc/ |
| 117 - ^[A-Z]+$ | 134 - ^[A-Z]+$ |
| 118 - ^[A-Z]+\.[a-z]+$ | 135 - ^[A-Z]+\.[a-z]+$ |
| OLD | NEW |