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

Side by Side Diff: dart/site/try/app.yaml

Issue 451633002: Force SSL on Try Dart. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | dart/site/try/index.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 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 # App Engine configuration, see: 5 # App Engine configuration, see:
6 # https://developers.google.com/appengine/docs/python/config/appconfig 6 # https://developers.google.com/appengine/docs/python/config/appconfig
7 7
8 # The version number should be something like rSVN_REVISION. 8 # The version number should be something like rSVN_REVISION.
9 version: remember to edit app.yaml before deploying 9 version: remember to edit app.yaml before deploying
10 # This version name is used to create a new host, for example, 10 # This version name is used to create a new host, for example,
(...skipping 12 matching lines...) Expand all
23 # immediately. 23 # immediately.
24 # 24 #
25 # Problem: PageSpeed Insights doesn't realize that we use AppCache and keeps 25 # Problem: PageSpeed Insights doesn't realize that we use AppCache and keeps
26 # nagging about caching. 26 # nagging about caching.
27 # Solution: Ignore its advice about "Leverage browser caching". 27 # Solution: Ignore its advice about "Leverage browser caching".
28 default_expiration: 1s 28 default_expiration: 1s
29 29
30 handlers: 30 handlers:
31 - url: /packages/analyzer 31 - url: /packages/analyzer
32 static_dir: packages/analyzer 32 static_dir: packages/analyzer
33 secure: always
33 34
34 - url: /packages/args 35 - url: /packages/args
35 static_dir: packages/args 36 static_dir: packages/args
37 secure: always
36 38
37 - url: /packages/collection 39 - url: /packages/collection
38 static_dir: packages/collection 40 static_dir: packages/collection
41 secure: always
39 42
40 - url: /packages/crypto 43 - url: /packages/crypto
41 static_dir: packages/crypto 44 static_dir: packages/crypto
45 secure: always
42 46
43 - url: /packages/http 47 - url: /packages/http
44 static_dir: packages/http 48 static_dir: packages/http
49 secure: always
45 50
46 - url: /packages/http_parser 51 - url: /packages/http_parser
47 static_dir: packages/http_parser 52 static_dir: packages/http_parser
53 secure: always
48 54
49 - url: /packages/intl 55 - url: /packages/intl
50 static_dir: packages/intl 56 static_dir: packages/intl
57 secure: always
51 58
52 - url: /packages/logging 59 - url: /packages/logging
53 static_dir: packages/logging 60 static_dir: packages/logging
61 secure: always
54 62
55 - url: /packages/matcher 63 - url: /packages/matcher
56 static_dir: packages/matcher 64 static_dir: packages/matcher
65 secure: always
57 66
58 - url: /packages/math 67 - url: /packages/math
59 static_dir: packages/math 68 static_dir: packages/math
69 secure: always
60 70
61 - url: /packages/path 71 - url: /packages/path
62 static_dir: packages/path 72 static_dir: packages/path
73 secure: always
63 74
64 - url: /packages/serialization 75 - url: /packages/serialization
65 static_dir: packages/serialization 76 static_dir: packages/serialization
77 secure: always
66 78
67 - url: /packages/stack_trace 79 - url: /packages/stack_trace
68 static_dir: packages/stack_trace 80 static_dir: packages/stack_trace
81 secure: always
69 82
70 - url: /packages/string_scanner 83 - url: /packages/string_scanner
71 static_dir: packages/string_scanner 84 static_dir: packages/string_scanner
85 secure: always
72 86
73 - url: /packages/unittest 87 - url: /packages/unittest
74 static_dir: packages/unittest 88 static_dir: packages/unittest
89 secure: always
75 90
76 - url: /packages/yaml 91 - url: /packages/yaml
77 static_dir: packages/yaml 92 static_dir: packages/yaml
93 secure: always
78 94
79 - url: /favicon\.ico 95 - url: /favicon\.ico
80 static_files: favicon.ico 96 static_files: favicon.ico
81 upload: favicon\.ico 97 upload: favicon\.ico
82 secure: never 98 secure: always
83 99
84 - url: / 100 - url: /
85 static_files: index.html 101 static_files: index.html
86 upload: index.html 102 upload: index.html
87 secure: never 103 secure: always
88 104
89 - url: /nossl.appcache 105 - url: /nossl.appcache
90 static_files: nossl.appcache 106 static_files: nossl.appcache
91 upload: nossl.appcache 107 upload: nossl.appcache
92 secure: never 108 secure: always
93 109
94 - url: /(.*\.(html|js|png|css|dart|json)) 110 - url: /(.*\.(html|js|png|css|dart|json))
95 static_files: \1 111 static_files: \1
96 upload: (.*\.(html|js|png|css|dart|json)) 112 upload: (.*\.(html|js|png|css|dart|json))
97 secure: never 113 secure: always
98 114
99 - url: /css/fonts/fontawesome-webfont.woff 115 - url: /css/fonts/fontawesome-webfont.woff
100 static_files: fontawesome-webfont.woff 116 static_files: fontawesome-webfont.woff
101 upload: fontawesome-webfont.woff 117 upload: fontawesome-webfont.woff
102 secure: never 118 secure: always
103 119
104 - url: .* 120 - url: .*
105 static_files: not_found.html 121 static_files: not_found.html
106 upload: not_found.html 122 upload: not_found.html
107 secure: never 123 secure: always
108 124
109 libraries: 125 libraries:
110 - name: webapp2 126 - name: webapp2
111 version: "2.5.2" 127 version: "2.5.2"
OLDNEW
« no previous file with comments | « no previous file | dart/site/try/index.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698