Skip to content

Commit

Permalink
fix redirect, add message
Browse files Browse the repository at this point in the history
  • Loading branch information
nrsirapop committed Apr 12, 2022
1 parent b22a8f5 commit e3d4916
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 33 deletions.
39 changes: 7 additions & 32 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,31 +37,6 @@ module.exports = withNextra({
destination: "/validator/troubleshoot/startup",
statusCode: 301,
},
{
source: "/node",
destination: "/node/join",
statusCode: 302,
},
{
source: "/validator",
destination: "/validator/setup",
statusCode: 302,
},
{
source: "/validator/setup",
destination: "/validator/setup/overview",
statusCode: 302,
},
{
source: "/validator/external-chains",
destination: "/validator/external-chains/overview",
statusCode: 302,
},
{
source: "/validator/troubleshoot",
destination: "/validator/troubleshoot/startup",
statusCode: 302,
},
{
source: "/resources/mainnet-releases",
destination: "/resources/mainnet",
Expand All @@ -73,20 +48,20 @@ module.exports = withNextra({
statusCode: 301,
},
{
source: "/releases(.*)",
destination: "/resources$1",
source: "/releases/:path",
destination: "/resources/:path",
statusCode: 301,
},
{
source: "/roles(.*)",
destination: "$1",
source: "/user/:path",
destination: "/resources/:path",
statusCode: 301,
},
{
source: "/user(.*)",
destination: "/resources$1",
source: "/roles/:path",
destination: "/:path",
statusCode: 301,
}
},
];
},
});
2 changes: 1 addition & 1 deletion pages/resources/testnet/upgrade.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ cp -r ~/.axelar_testnet/.core/data ~/.axelar-lisbon-3-upgrade-0.17/.core/data
```

<Callout type="warning" emoji="⚠️">
If you backup the entire folder, `~/.axelar_testnet/.core`, that'll also include your private keys (inside `config` and `keyring-file` subfolders). That can be dangerous if anyone gets access to your backups. We recommend backing up keys separately when you first create your node, and then excluding them from any data backups.
Caution: If you backup the entire folder, `~/.axelar_testnet/.core`, that'll also include your private keys (inside `config` and `keyring-file` subfolders). That can be dangerous if anyone gets access to your backups. We recommend backing up keys separately when you first create your node, and then excluding them from any data backups.
</Callout>

4. Restart your node with the new `v0.17.0` build (`tofnd` still uses `v0.8.2`).
Expand Down

1 comment on commit e3d4916

@vercel
Copy link

@vercel vercel bot commented on e3d4916 Apr 12, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

axelar-docs – ./

axelar-docs-axelar.vercel.app
axelar-docs-git-main-axelar.vercel.app
axelar-docs-six.vercel.app

Please sign in to comment.