You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The site is built using [GitHub Actions](https://github.com/ledger/ledger.github.io/actions) and
20
20
deploys to [GitHub Pages](https://pages.github.com).
21
21
22
-
We use this small [Lambda@Edge](https://docs.aws.amazon.com/lambda/latest/dg/lambda-edge.html) function to serve redirects and to redirect bare domain to `www`:
23
-
24
-
'use strict';
25
-
26
-
exports.handler = (event, context, callback) => {
27
-
const request = event.Records[0].cf.request;
28
-
const host = request.headers.host[0].value;
29
-
30
-
if (host == "www.ledger-cli.org") {
31
-
callback(null, request);
32
-
} else {
33
-
var redirectTarget = 'https://www.ledger-cli.org';
0 commit comments