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

Unified Diff: appengine/chromium_build_stats/default/app.yaml

Issue 588463002: chromium_build_stats: add favicon.ico and robots.txt (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « no previous file | appengine/chromium_build_stats/default/static/favicon.ico » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/chromium_build_stats/default/app.yaml
diff --git a/appengine/chromium_build_stats/default/app.yaml b/appengine/chromium_build_stats/default/app.yaml
index 045648ed72aa283e9836dbc7ab4fd5f58b7d221c..3a3b3b036f1bf21dfa5116e836958d8ae7261810 100644
--- a/appengine/chromium_build_stats/default/app.yaml
+++ b/appengine/chromium_build_stats/default/app.yaml
@@ -15,6 +15,16 @@ runtime: go
api_version: go1
handlers:
+- url: /(.+.ico)
shinyak 2014/09/19 05:40:04 Maybe /(.+\.ico) ?
ukai 2014/09/19 06:19:23 Done.
+ static_files: static/\1
+ mime_type: image/x-icon
+ upload: static/(.+.ico)
shinyak 2014/09/19 05:40:04 ditto.
ukai 2014/09/19 06:19:23 Done.
+
+- url: /(robots\.txt)
+ static_files: static/\1
+ mime_type: text/plain
+ upload: static/(robots\.txt)
+
- url: /file.*
script: _go_app
login: required
« no previous file with comments | « no previous file | appengine/chromium_build_stats/default/static/favicon.ico » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698