mirror of
https://github.com/status-im/consul.git
synced 2025-01-10 22:06:20 +00:00
90bbae5d75
* converted intentions conf entry to ref CT format * set up intentions nav * add page for intentions usage * final intentions usage page * final intentions overview page * fixed old relative links * updated diagram for overview * updated links to intentions content * fixed typo in updated links * rename intentions overview page file to index * rollback link updates to intentions overview * fixed nav * Updated custom HTML in API and CLI pages to MD * applied suggestions from review to index page * moved conf examples from usage to conf ref * missed custom HTML section * applied additional feedback * Apply suggestions from code review Co-authored-by: Tu Nguyen <im2nguyen@users.noreply.github.com> * updated headings in usage page * renamed files and udpated nav * updated links to new file names * added redirects and final tweaks * typo --------- Co-authored-by: Tu Nguyen <im2nguyen@users.noreply.github.com>
36 lines
1.2 KiB
JavaScript
36 lines
1.2 KiB
JavaScript
// REDIRECTS FILE
|
|
|
|
// See the README file in this directory for documentation. Please do not
|
|
// modify or delete existing redirects without first verifying internally.
|
|
// Next.js redirect documentation: https://nextjs.org/docs/api-reference/next.config.js/redirects
|
|
|
|
module.exports = [
|
|
{
|
|
source: '/consul/docs/connect/cluster-peering/create-manage-peering',
|
|
destination:
|
|
'/consul/docs/connect/cluster-peering/usage/establish-cluster-peering',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/connect/cluster-peering/usage/establish-peering',
|
|
destination:
|
|
'/consul/docs/connect/cluster-peering/usage/establish-cluster-peering',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/connect/cluster-peering/k8s',
|
|
destination: '/consul/docs/k8s/connect/cluster-peering/tech-specs',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/connect/intentions#intention-management-permissions',
|
|
destination: `/consul/docs/connect/intentions/create-manage-intentions#acl-requirements`,
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/consul/docs/connect/intentions#intention-basics',
|
|
destination: `/consul/docs/connect/intentions`,
|
|
permanent: true,
|
|
},
|
|
]
|