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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « no previous file | appengine/chromium_build_stats/default/static/favicon.ico » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 # 4 #
5 # To check locally (couldn't fetch from cloud storage because 5 # To check locally (couldn't fetch from cloud storage because
6 # dev_appserver doesn't support service account) 6 # dev_appserver doesn't support service account)
7 # $ ../goenv.sh goapp serve 7 # $ ../goenv.sh goapp serve
8 # 8 #
9 # To deploy 9 # To deploy
10 # $ ../goenv.sh goapp deploy 10 # $ ../goenv.sh goapp deploy
11 # 11 #
12 application: chromium-build-stats 12 application: chromium-build-stats
13 version: 1 13 version: 1
14 runtime: go 14 runtime: go
15 api_version: go1 15 api_version: go1
16 16
17 handlers: 17 handlers:
18 - url: /(.+.ico)
shinyak 2014/09/19 05:40:04 Maybe /(.+\.ico) ?
ukai 2014/09/19 06:19:23 Done.
19 static_files: static/\1
20 mime_type: image/x-icon
21 upload: static/(.+.ico)
shinyak 2014/09/19 05:40:04 ditto.
ukai 2014/09/19 06:19:23 Done.
22
23 - url: /(robots\.txt)
24 static_files: static/\1
25 mime_type: text/plain
26 upload: static/(robots\.txt)
27
18 - url: /file.* 28 - url: /file.*
19 script: _go_app 29 script: _go_app
20 login: required 30 login: required
21 - url: /ninja_log.* 31 - url: /ninja_log.*
22 script: _go_app 32 script: _go_app
23 - url: /.* 33 - url: /.*
24 script: _go_app 34 script: _go_app
OLDNEW
« 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