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

Unified Diff: appengine/swarming/app.yaml

Issue 2177353002: Add top level app element (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-py@hello-oauth
Patch Set: Fix presubmits to ignore build files 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 side-by-side diff with in-line comments
Download patch
Index: appengine/swarming/app.yaml
diff --git a/appengine/swarming/app.yaml b/appengine/swarming/app.yaml
index 86b85f2da378d89aabeeffef960713e2f8a6f0a4..d242c559fde04f6c617e17db95e7c999490970fe 100644
--- a/appengine/swarming/app.yaml
+++ b/appengine/swarming/app.yaml
@@ -68,16 +68,24 @@ handlers:
# TODO(kjlubick): Consider moving elements/ to frontend/ so it is a bit more clear what the folder is about.
- url: /newui/
- static_files: elements/build/index-build.html
- upload: elements/build/index-build.html
+ static_files: elements/index.html
+ upload: elements/index.html
secure: always
http_headers:
Strict-Transport-Security: "max-age=31536000; includeSubDomains; preload"
X-Frame-Options: deny
- url: /newui/(.+)
- static_files: elements/build/\1-build.html
- upload: elements/build/([^/]+)-build.html
+ static_files: elements/\1-index.html
+ upload: elements/([^/]+)-index.html
+ secure: always
+ http_headers:
+ Strict-Transport-Security: "max-age=31536000; includeSubDomains; preload"
+ X-Frame-Options: deny
+
+- url: /res/(.+)
+ static_files: elements/build/\1
+ upload: elements/build/([^/]+)
secure: always
http_headers:
Strict-Transport-Security: "max-age=31536000; includeSubDomains; preload"

Powered by Google App Engine
This is Rietveld 408576698