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

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

Issue 10917023: add links to footer, too (Closed) Base URL: git@github.com:dart-lang/dartlang.org.git@master
Patch Set: Created 8 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 | src/site/_includes/footer.html » ('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: dart-lang 1 application: dart-lang
2 version: CHANGEME 2 version: CHANGEME
3 # NOTE: URL is CHANGEME.dart-lang.appspot.com 3 # NOTE: URL is CHANGEME.dart-lang.appspot.com
4 # To get your own staging server, change 'CHANGEME' to something 4 # To get your own staging server, change 'CHANGEME' to something
5 # like 'kathyw' or 'kathyw-dartium'. 5 # like 'kathyw' or 'kathyw-dartium'.
6 # 6 #
7 # To deploy to dartlang.org (only from a clean master workspace) 7 # To deploy to dartlang.org (only from a clean master workspace)
8 # change CHANGEME to a date string: YYYY-MM-DD. 8 # change CHANGEME to a date string: YYYY-MM-DD.
9 # For more information on making changes, see goto/dartsiteupdate. 9 # For more information on making changes, see goto/dartsiteupdate.
10 # 10 #
11 # IMPORTANT: AFTER changing the version, DO THIS: 11 # IMPORTANT: AFTER changing the version, DO THIS:
12 # make clean 12 # make clean
13 # make build 13 # make build
14 14
15 runtime: python27 15 runtime: python27
16 api_version: 1 16 api_version: 1
17 threadsafe: true 17 threadsafe: true
18 18
19 pagespeed:
20 enabled_rewriters:
21 - InlineImages
22 - CollapseWhitespace
23 - RemoveComments
24 - InlineJs
25
19 #default_expiration: "1d" 26 #default_expiration: "1d"
20 27
21 handlers: 28 handlers:
22 - url: /\+ 29 - url: /\+
23 script: scripts.redirector.application 30 script: scripts.redirector.application
24 31
25 - url: /mailing-list 32 - url: /mailing-list
26 script: scripts.redirector.application 33 script: scripts.redirector.application
27 34
28 - url: /docs/spec/dartLangSpec.* 35 - url: /docs/spec/dartLangSpec.*
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 static_files: static/\1 87 static_files: static/\1
81 expiration: 7d 88 expiration: 7d
82 upload: static/(.*\.woff) 89 upload: static/(.*\.woff)
83 90
84 - url: (.*)/ 91 - url: (.*)/
85 static_files: static\1/index.html 92 static_files: static\1/index.html
86 upload: static/index.html 93 upload: static/index.html
87 94
88 - url: / 95 - url: /
89 static_dir: static 96 static_dir: static
OLDNEW
« no previous file with comments | « no previous file | src/site/_includes/footer.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698