Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(238)

Side by Side Diff: appengine/swarming/app.yaml

Issue 2525703002: Enable caching for some Swarming UI content (Closed)
Patch Set: y Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | appengine/swarming/handlers_frontend.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
11 min_pending_latency: 50ms 11 min_pending_latency: 50ms
12 max_pending_latency: 250ms 12 max_pending_latency: 250ms
13 13
14 default_expiration: "10m"
15
14 handlers: 16 handlers:
15 - url: /_ah/spi/.* 17 - url: /_ah/spi/.*
16 script: main.endpoints_app 18 script: main.endpoints_app
17 secure: always 19 secure: always
18 20
19 - url: /internal/mapreduce(/.*)? 21 - url: /internal/mapreduce(/.*)?
20 script: main.mapreduce_app 22 script: main.mapreduce_app
21 secure: always 23 secure: always
22 login: admin 24 login: admin
23 25
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 # TODO(maruel): Move /internal/ to module-backend.yaml. 69 # TODO(maruel): Move /internal/ to module-backend.yaml.
68 - url: /internal/.+ 70 - url: /internal/.+
69 script: main.app 71 script: main.app
70 secure: always 72 secure: always
71 login: admin 73 login: admin
72 74
73 - url: /res/(.+) 75 - url: /res/(.+)
74 static_files: ui/build/\1 76 static_files: ui/build/\1
75 upload: ui/build/(.+) 77 upload: ui/build/(.+)
76 secure: always 78 secure: always
79 expiration: "1h"
77 http_headers: 80 http_headers:
78 Strict-Transport-Security: "max-age=31536000; includeSubDomains; preload" 81 Strict-Transport-Security: "max-age=31536000; includeSubDomains; preload"
79 X-Frame-Options: deny 82 X-Frame-Options: deny
80 83
81 - url: .* 84 - url: .*
82 script: main.app 85 script: main.app
83 secure: always 86 secure: always
84 87
85 builtins: 88 builtins:
86 - deferred: on 89 - deferred: on
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 - .+\.zip$ 126 - .+\.zip$
124 - ^(.*/)?#.*# 127 - ^(.*/)?#.*#
125 - .+~ 128 - .+~
126 - .+\.py[co] 129 - .+\.py[co]
127 # Doc, readme and license. 130 # Doc, readme and license.
128 - ^doc/ 131 - ^doc/
129 - ^[A-Z]+$ 132 - ^[A-Z]+$
130 - ^[A-Z]+\.[a-z]+$ 133 - ^[A-Z]+\.[a-z]+$
131 - ui/node_modules/ 134 - ui/node_modules/
132 - ui/res/imp/bower_components/ 135 - ui/res/imp/bower_components/
OLDNEW
« no previous file with comments | « no previous file | appengine/swarming/handlers_frontend.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698