forked from ethereum/ethereum-org-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
netlify.toml
338 lines (305 loc) · 8.75 KB
/
netlify.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
# Settings in the [build] context are global and are applied to all contexts
# unless otherwise overridden by more specific contexts.
[build]
# Directory to change to before starting a build.
# This is where we will look for package.json/.nvmrc/etc.
# base = "project/"
# Directory (relative to root of your repo) that contains the deploy-ready
# HTML files and assets generated by the build. If a base directory has
# been specified, include it in the publish directory path.
publish = "public"
# Default build command.
command = "yarn build"
# Directory with the serverless Lambda functions to deploy to AWS.
functions = "public/lambda"
# Production context: all deploys from the Production branch set in your site's
# deploy contexts will inherit these settings.
# [context.production]
# publish = "project/output/"
# command = "make publish"
# environment = { ACCESS_TOKEN = "super secret", NODE_VERSION = "8.0.1" }
# Deploy Preview context: all deploys generated from a pull/merge request will
# inherit these settings.
# [context.deploy-preview]
# publish = "project/dist/"
# Here is another way to define context specific environment variables.
# [context.deploy-preview.environment]
# ACCESS_TOKEN = "not so secret"
# Branch Deploy context: all deploys that are not from a pull/merge request or
# from the Production branch will inherit these settings.
# [context.branch-deploy]
# command = "echo branch"
# [context.branch-deploy.environment]
# NODE_ENV = "development"
# Specific branch context: all deploys from this specific branch will inherit
# these settings.
# [context.staging] # 'staging' is a branch name
# command = "echo 'staging'"
# base = "staging"
# For contexts of branches with special characters, enclose the branch name
# with quotes.
# [context."feat/branch"]
# command = "echo 'special branch'"
# base = "branch"
# Redirects and headers are GLOBAL for all builds – they do not get scoped to
# contexts no matter where you define them in the file.
# For context-specific rules, use _headers or _redirects files, which are
# PER-DEPLOY.
# Legacy website pages
[[redirects]]
from = "/pdfs/*"
to = "/en/"
[[redirects]]
from = "/brand"
to = "/en/assets/"
[[redirects]]
from = "/ether"
to = "/en/dapps/"
[[redirects]]
from = "/token"
to = "/en/developers/"
[[redirects]]
from = "/crowdsale"
to = "/en/developers/"
[[redirects]]
from = "/dao"
to = "/en/developers/"
[[redirects]]
from = "/cli"
to = "/en/developers/"
[[redirects]]
from = "/greeter"
to = "/en/developers/"
[[redirects]]
from = "/search"
to = "/en/"
# Legacy pages from current site
## English
[[redirects]]
from = "/use"
to = "/en/dapps/"
[[redirects]]
from = "/beginners"
to = "/en/what-is-ethereum/"
## All translations
[[redirects]]
from = "/*/beginners"
to = "/:splat/what-is-ethereum/"
## v1.1 translations
[[redirects]]
from = "/ar/use"
to = "/ar/dapps/"
[[redirects]]
from = "/de/use"
to = "/de/dapps/"
[[redirects]]
from = "/fr/use"
to = "/fr/dapps/"
[[redirects]]
from = "/id/use"
to = "/id/dapps/"
[[redirects]]
from = "/sk/use"
to = "/sk/dapps/"
# English path redirects
# Force because the files exist (root paths still resolve to English)
[[redirects]]
from = "/"
to = "/en/"
force = true
[[redirects]]
from = "/what-is-ethereum/"
to = "/en/what-is-ethereum/"
force = true
[[redirects]]
from = "/eth/"
to = "/en/eth/"
force = true
[[redirects]]
from = "/dapps/"
to = "/en/dapps/"
force = true
[[redirects]]
from = "/wallets/"
to = "/en/wallets/"
force = true
[[redirects]]
from = "/learn/"
to = "/en/learn/"
force = true
[[redirects]]
from = "/community/"
to = "/en/community/"
force = true
[[redirects]]
from = "/build/"
to = "/en/developers/learning-tools/"
force = true
[[redirects]]
from = "/developers/"
to = "/en/developers/"
force = true
[[redirects]]
from = "/enterprise/"
to = "/en/enterprise/"
force = true
[[redirects]]
from = "/whitepaper/"
to = "/en/whitepaper/"
force = true
[[redirects]]
from = "/foundation/"
to = "/en/foundation/"
force = true
[[redirects]]
from = "/eips/"
to = "/en/eips/"
force = true
[[redirects]]
from = "/about/"
to = "/en/about/"
force = true
[[redirects]]
from = "/privacy-policy/"
to = "/en/privacy-policy/"
force = true
[[redirects]]
from = "/terms-of-use/"
to = "/en/terms-of-use/"
force = true
[[redirects]]
from = "/cookie-policy/"
to = "/en/cookie-policy/"
force = true
[[redirects]]
from = "/languages/"
to = "/en/languages/"
force = true
[[redirects]]
from = "/enterprise/"
to = "/en/enterprise/"
force = true
[[redirects]]
from = "/java/"
to = "/en/developers/docs/programming-languages/java/"
force = true
[[redirects]]
from = "/python/"
to = "/en/developers/docs/programming-languages/python/"
force = true
[[redirects]]
from = "/javascript/"
to = "/en/developers/docs/programming-languages/javascript/"
force = true
[[redirects]]
from = "/golang/"
to = "/en/developers/docs/programming-languages/golang/"
force = true
[[redirects]]
from = "/rust/"
to = "/en/developers/docs/programming-languages/rust/"
force = true
[[redirects]]
from = "/dot-net/"
to = "/en/developers/docs/programming-languages/dot-net/"
force = true
[[redirects]]
from = "/delphi/"
to = "/en/developers/docs/programming-languages/delphi/"
force = true
# Norwegian update
## All translations
[[redirects]]
from = "/no/*"
to = "/nb/:splat"
# EDN updates
[[redirects]]
from = "/en/build/"
to = "/en/developers/learning-tools/"
[[redirects]]
from = "/en/java/"
to = "/en/developers/docs/programming-languages/java/"
[[redirects]]
from = "/en/python/"
to = "/en/developers/docs/programming-languages/python/"
[[redirects]]
from = "/en/javascript/"
to = "/en/developers/docs/programming-languages/javascript/"
[[redirects]]
from = "/en/golang/"
to = "/en/developers/docs/programming-languages/golang/"
[[redirects]]
from = "/en/rust/"
to = "/en/developers/docs/programming-languages/rust/"
[[redirects]]
from = "/en/dot-net/"
to = "/en/developers/docs/programming-languages/dot-net/"
[[redirects]]
from = "/en/delphi/"
to = "/en/developers/docs/programming-languages/delphi/"
[[redirects]]
from = "/en/developers/docs/mining/"
to = "/en/developers/docs/consensus-mechanisms/pow/mining/"
# Eth2 updates
[[redirects]]
from = "/en/eth2/the-beacon-chain/"
to = "/en/eth2/beacon-chain/"
# English fallback redirect
# If no page exists at /request-url, redirect to /en/request-url
# WARNING: this causes the development environment to fail when running `netlify dev`
# https://github.com/netlify/cli/issues/1299
# [[redirects]]
# from = "/*"
# to = "/en/:splat"
# force = false
# A redirect rule with all the supported properties
# [[redirects]]
# from = "/old-path"
# to = "/new-path"
# The default HTTP status code is 301, but you can define a different one.
# status = 302
# By default, redirects won't be applied if there's a file with the same
# path as the one defined in the `from` property. Setting `force` to `true`
# will make the redirect rule take precedence over any existing files.
# force = true
# Redirect from /old-path?id=123 to /new-path. Each combination of query
# params needs to be defined in a separate [[redirects]] block.
# More information at https://docs.netlify.com/routing/redirects/redirect-options/#query-parameters
# query = {id = ":id"}
# Redirect based on browser language, geolocation, and/or identity role.
# conditions = {Language = ["en"], Country = ["US"]}
# Sign each request with a value defined in an environment variable
# signed = "API_SIGNATURE_TOKEN"
# You can also define custom headers within your redirects blocks.
# [redirects.headers]
# X-From = "Netlify"
# X-Api-Key = "some-api-key-string"
# Role-based redirects does not have a 'to' property.
# [[redirects]]
# from = "/gated-path"
# status = 200
# conditions = {Role = ["admin"]}
# force = true
# The following redirect is intended for use with most SPAs that handle
# routing internally.
# [[redirects]]
# from = "/*"
# to = "/index.html"
# status = 200
# https://docs.netlify.com/routing/headers/#syntax-for-the-netlify-configuration-file
[[headers]]
# Define which paths this specific [[headers]] block will cover.
for = "/*"
[headers.values]
X-Frame-Options = "DENY"
X-XSS-Protection = "1; mode=block"
# Content-Security-Policy = "frame-ancestors https://www.facebook.com"
# Multi-value headers are expressed with multi-line strings.
# cache-control = '''
# max-age=0,
# no-cache,
# no-store,
# must-revalidate'''
# Basic-Auth allows you to password protect your whole site.
# This feature may not be available on all plans.
# Basic-Auth = "someuser:somepassword anotheruser:anotherpassword"