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

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

Issue 2174903002: Add stub pages and oauth-blessed request to /newui (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-py@master
Patch Set: Add imp folder Created 4 years, 5 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/swarming/elements/Makefile » ('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
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 # TODO(maruel): Unsure about polymer if it is inline-style free.
M-A Ruel 2016/07/25 16:30:21 https://github.com/PolymerLabs/crisper fixes inlin
kjlubick 2016/07/25 17:54:51 I just removed this and it seemed to work.
76 # TODO(maruel): Polymer abuses eval() and http://crbug.com/277857 gets in
M-A Ruel 2016/07/25 16:30:21 This bug is closed.
kjlubick 2016/07/25 17:54:51 I just removed this and it seemed to work.
77 # the way.
78 Content-Security-Policy: "default-src https: 'self' 'unsafe-inline' 'unsafe- eval'"
79 Strict-Transport-Security: "max-age=31536000; includeSubDomains; preload"
80 X-Frame-Options: deny
81
82 - url: /newui/(.+)
83 static_files: elements/build/\1-build.html
84 upload: elements/build/([^/]+)-build.html
85 secure: always
86 http_headers:
87 # TODO(maruel): Unsure about polymer if it is inline-style free.
88 # TODO(maruel): Polymer abuses eval() and http://crbug.com/277857 gets in
89 # the way.
90 Content-Security-Policy: "default-src https: 'self' 'unsafe-inline' 'unsafe- eval'"
91 Strict-Transport-Security: "max-age=31536000; includeSubDomains; preload"
92 X-Frame-Options: deny
93
69 - url: .* 94 - url: .*
70 script: main.app 95 script: main.app
71 secure: always 96 secure: always
72 97
73 builtins: 98 builtins:
74 - deferred: on 99 - deferred: on
75 - remote_api: on 100 - remote_api: on
76 101
77 inbound_services: 102 inbound_services:
78 - mail 103 - mail
(...skipping 30 matching lines...) Expand all
109 - .+\.orig$ 134 - .+\.orig$
110 - .+\.rej$ 135 - .+\.rej$
111 - .+\.zip$ 136 - .+\.zip$
112 - ^(.*/)?#.*# 137 - ^(.*/)?#.*#
113 - .+~ 138 - .+~
114 - .+\.py[co] 139 - .+\.py[co]
115 # Doc, readme and license. 140 # Doc, readme and license.
116 - ^doc/ 141 - ^doc/
117 - ^[A-Z]+$ 142 - ^[A-Z]+$
118 - ^[A-Z]+\.[a-z]+$ 143 - ^[A-Z]+\.[a-z]+$
OLDNEW
« no previous file with comments | « no previous file | appengine/swarming/elements/Makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698