2023-03-28 22:48:58 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) HashiCorp, Inc.
|
|
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
|
|
*/
|
|
|
|
|
2021-01-13 01:09:23 +00:00
|
|
|
// 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
|
|
|
|
|
2023-02-23 17:58:39 +00:00
|
|
|
module.exports = [
|
|
|
|
{
|
2023-03-03 19:17:26 +00:00
|
|
|
source: '/consul/docs/connect/cluster-peering/create-manage-peering',
|
2023-02-23 17:58:39 +00:00
|
|
|
destination:
|
2023-03-03 19:17:26 +00:00
|
|
|
'/consul/docs/connect/cluster-peering/usage/establish-cluster-peering',
|
2023-02-23 17:58:39 +00:00
|
|
|
permanent: true,
|
|
|
|
},
|
|
|
|
{
|
2023-03-03 19:17:26 +00:00
|
|
|
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',
|
2023-02-23 17:58:39 +00:00
|
|
|
permanent: true,
|
|
|
|
},
|
2023-03-24 22:16:06 +00:00
|
|
|
{
|
|
|
|
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,
|
|
|
|
},
|
2023-02-23 17:58:39 +00:00
|
|
|
]
|