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

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: more docs 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
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 - url: /newui/
stephana 2016/07/24 21:17:06 Nit: It looks like the elements folder will contai
kjlubick 2016/07/25 12:45:43 This is true.
kjlubick 2016/07/25 13:10:59 I added a TODO to consider this later when it is c
70 static_files: elements/build/index-build.html
71 upload: elements/build/index-build.html
72 secure: always
73 http_headers:
74 # TODO(maruel): Unsure about polymer if it is inline-style free.
75 # TODO(maruel): Polymer abuses eval() and http://crbug.com/277857 gets in
76 # the way.
77 Content-Security-Policy: "default-src https: 'self' 'unsafe-inline' 'unsafe- eval'"
78 Strict-Transport-Security: "max-age=31536000; includeSubDomains; preload"
79 X-Frame-Options: deny
80
81 - url: /newui/(.+)
82 static_files: elements/build/\1-build.html
83 upload: elements/build/([^/]+)-build.html
84 secure: always
85 http_headers:
86 # TODO(maruel): Unsure about polymer if it is inline-style free.
87 # TODO(maruel): Polymer abuses eval() and http://crbug.com/277857 gets in
88 # the way.
89 Content-Security-Policy: "default-src https: 'self' 'unsafe-inline' 'unsafe- eval'"
90 Strict-Transport-Security: "max-age=31536000; includeSubDomains; preload"
91 X-Frame-Options: deny
92
69 - url: .* 93 - url: .*
70 script: main.app 94 script: main.app
71 secure: always 95 secure: always
72 96
73 builtins: 97 builtins:
74 - deferred: on 98 - deferred: on
75 - remote_api: on 99 - remote_api: on
76 100
77 inbound_services: 101 inbound_services:
78 - mail 102 - mail
(...skipping 30 matching lines...) Expand all
109 - .+\.orig$ 133 - .+\.orig$
110 - .+\.rej$ 134 - .+\.rej$
111 - .+\.zip$ 135 - .+\.zip$
112 - ^(.*/)?#.*# 136 - ^(.*/)?#.*#
113 - .+~ 137 - .+~
114 - .+\.py[co] 138 - .+\.py[co]
115 # Doc, readme and license. 139 # Doc, readme and license.
116 - ^doc/ 140 - ^doc/
117 - ^[A-Z]+$ 141 - ^[A-Z]+$
118 - ^[A-Z]+\.[a-z]+$ 142 - ^[A-Z]+\.[a-z]+$
OLDNEW
« no previous file with comments | « no previous file | appengine/swarming/elements/Makefile » ('j') | appengine/swarming/elements/Makefile » ('J')

Powered by Google App Engine
This is Rietveld 408576698