Skip to content

Commit 23e895a

Browse files
Add more redirects (#455)
* Add more redirects * fix discord links
1 parent 1b1b937 commit 23e895a

File tree

5 files changed

+26
-13
lines changed

5 files changed

+26
-13
lines changed

docs/concepts/slashing-protection.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Teku provides command line options to [import] or [export] the slashing protecti
2828

2929
:::tip
3030

31-
Teku also supports [doppelganger detection](../how-to/doppelganger-detection.md) to help prevent slashing. This is an early access feature.
31+
Teku also supports [doppelganger detection](../how-to/enable-doppelganger-detection.md) to help prevent slashing. This is an early access feature.
3232

3333
:::
3434

docs/how-to/prevent-slashing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ If using an external signer that implements its own slashing protection (for exa
1818

1919
:::tip
2020

21-
You can also [enable doppelganger detection](doppelganger-detection.md) to help prevent slashing. This is an early access feature.
21+
You can also [enable doppelganger detection](enable-doppelganger-detection.md) to help prevent slashing. This is an early access feature.
2222

2323
:::
2424

docs/reference/cli/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ beacon-liveness-tracking-enabled: true
8080

8181
<!--/tabs-->
8282

83-
Enables or disables validator liveness tracking. Used by [doppelganger detection](../../how-to/doppelganger-detection.md). The default is `false`.
83+
Enables or disables validator liveness tracking. Used by [doppelganger detection](../../how-to/enable-doppelganger-detection.md). The default is `false`.
8484

8585
### builder-bid-compare-factor
8686

@@ -422,7 +422,7 @@ doppelganger-detection-enabled: true
422422

423423
<!--/tabs-->
424424

425-
Enables or disables [doppelganger detection](../../how-to/doppelganger-detection.md). The default is `false`.
425+
Enables or disables [doppelganger detection](../../how-to/enable-doppelganger-detection.md). The default is `false`.
426426

427427
### ee-endpoint
428428

docusaurus.config.js

+22-9
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ const config = {
176176
position: "right",
177177
},
178178
{
179-
href: "https://discord.gg/ChtFaC4",
179+
href: "https://discord.com/invite/consensys",
180180
className: "header-discord-link",
181181
position: "right",
182182
},
@@ -234,7 +234,7 @@ const config = {
234234
items: [
235235
{
236236
label: "ConsenSys Discord",
237-
href: "https://discord.gg/ChtFaC4",
237+
href: "https://discord.com/invite/consensys",
238238
},
239239
{
240240
label: "Teku GitHub",
@@ -367,10 +367,18 @@ const config = {
367367
from: "/HowTo/Configure/Configure-TLS",
368368
to: "/how-to/configure/tls",
369369
},
370+
{
371+
from: "/HowTo/Configure/Builder-Network",
372+
to: "/how-to/configure/builder-network",
373+
},
370374
{
371375
from: "/HowTo/Find-and-Connect/Specifying-NAT",
372376
to: "/how-to/find-and-connect/specify-nat",
373377
},
378+
{
379+
from: "/HowTo/Find-and-Connect/Improve-Connectivity",
380+
to: "/how-to/find-and-connect/improve-connectivity",
381+
},
374382
{
375383
from: "/HowTo/Voluntary-Exit",
376384
to: "/how-to/voluntarily-exit",
@@ -394,6 +402,18 @@ const config = {
394402
from: "/HowTo/Withdrawal-Keys",
395403
to: "/how-to/update-withdrawal-keys",
396404
},
405+
{
406+
from: "/HowTo/Doppelganger-Detection",
407+
to: "/how-to/enable-doppelganger-detection",
408+
},
409+
{
410+
from: "/HowTo/Migrate-Database",
411+
to: "/how-to/migrate-database",
412+
},
413+
{
414+
from: "/HowTo/Prevent-Slashing",
415+
to: "/how-to/prevent-slashing",
416+
},
397417
{
398418
from: "/Concepts/ArchitectureOverview",
399419
to: "/concepts/architecture",
@@ -403,13 +423,6 @@ const config = {
403423
to: "/reference/cli",
404424
},
405425
],
406-
createRedirects(existingPath) {
407-
if (existingPath.includes("/how-to")) {
408-
// Redirect from /HowTo/X to /how-to/X
409-
return [existingPath.replace("/how-to", "/HowTo")];
410-
}
411-
return undefined; // Return a falsy value: no redirect created
412-
},
413426
},
414427
],
415428
],

0 commit comments

Comments
 (0)