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

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

Issue 2991153002: Add stub for new polymer-based Isolate UI (Closed)
Patch Set: Address feedback Created 3 years, 4 months 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/isolate/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: isolateserver-dev 1 application: isolateserver-dev
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 16 matching lines...) Expand all
27 login: required 27 login: required
28 28
29 - url: /mapreduce/pipeline/images 29 - url: /mapreduce/pipeline/images
30 static_dir: third_party/mapreduce/lib/pipeline/ui/images 30 static_dir: third_party/mapreduce/lib/pipeline/ui/images
31 secure: always 31 secure: always
32 http_headers: 32 http_headers:
33 Content-Security-Policy: "default-src https: 'self'" 33 Content-Security-Policy: "default-src https: 'self'"
34 Strict-Transport-Security: "max-age=31536000; includeSubDomains; preload" 34 Strict-Transport-Security: "max-age=31536000; includeSubDomains; preload"
35 X-Frame-Options: deny 35 X-Frame-Options: deny
36 36
37 - url: /res/(.+)
38 static_files: ui/build/\1
39 upload: ui/build/(.+)
40 secure: always
41 expiration: "1h"
42 http_headers:
43 Strict-Transport-Security: "max-age=31536000; includeSubDomains; preload"
44 X-Frame-Options: deny
45
37 - url: /(.+)\.(css|gif|ico|js|txt) 46 - url: /(.+)\.(css|gif|ico|js|txt)
38 static_files: static/\1.\2 47 static_files: static/\1.\2
39 upload: static/(.+)\.(css|gif|ico|js|txt) 48 upload: static/(.+)\.(css|gif|ico|js|txt)
40 secure: always 49 secure: always
41 http_headers: 50 http_headers:
42 Content-Security-Policy: "default-src https: 'self'" 51 Content-Security-Policy: "default-src https: 'self'"
43 Strict-Transport-Security: "max-age=31536000; includeSubDomains; preload" 52 Strict-Transport-Security: "max-age=31536000; includeSubDomains; preload"
44 X-Frame-Options: deny 53 X-Frame-Options: deny
45 54
46 - url: /.* 55 - url: /.*
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 - .+_test\.py$ 93 - .+_test\.py$
85 # Junk files. 94 # Junk files.
86 - ^(.*/)?\..* 95 - ^(.*/)?\..*
87 - .+\.orig$ 96 - .+\.orig$
88 - .+\.rej$ 97 - .+\.rej$
89 - ^(.*/)?#.*# 98 - ^(.*/)?#.*#
90 - .+~ 99 - .+~
91 - .+\.py[co] 100 - .+\.py[co]
92 - ^[A-Z]+$ 101 - ^[A-Z]+$
93 - ^[A-Z]+\.[a-z]+$ 102 - ^[A-Z]+\.[a-z]+$
103 - ui/node_modules/
104 - ui/res/imp/bower_components/
OLDNEW
« no previous file with comments | « no previous file | appengine/isolate/handlers_frontend.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698