pomerium/docs/.vuepress/config.js
Bobby DeSimone fc3b16d366
docs: add AdGuard recipe (#359)
Signed-off-by: Bobby DeSimone <bobbydesimone@gmail.com>
2019-10-09 08:28:12 -07:00

124 lines
3.4 KiB
JavaScript

// .vuepress/config.js
module.exports = {
title: "Pomerium",
description:
"Pomerium is a beyond-corp inspired, zero trust, open source identity-aware access proxy.",
plugins: {
sitemap: {
hostname: "https://www.pomerium.io"
},
"@vuepress/google-analytics": {
ga: "UA-129872447-2"
}
},
markdown: {
externalLinkSymbol: false
},
themeConfig: {
logo: "/logo-long-civez.png",
repo: "pomerium/pomerium",
editLinks: true,
docsDir: "docs",
editLinkText: "Edit this page on GitHub",
lastUpdated: "Last Updated",
nav: [
{ text: "Documentation", link: "/docs/" },
{ text: "Recipes", link: "/recipes/" },
{ text: "Community", link: "/community/" },
{
text: "🚧Dev", // current tagged version
ariaLabel: "Version menu",
items: [
{ text: "🚧Dev", link: "https://master.docs.pomerium.io/docs" },
{ text: "v0.4.x", link: "https://0-4-0.docs.pomerium.io/docs" },
{ text: "v0.3.x", link: "https://0-3-0.docs.pomerium.io/docs" },
{ text: "v0.2.x", link: "https://0-2-0.docs.pomerium.io/docs" },
{ text: "v0.1.x", link: "https://0-1-0.docs.pomerium.io/docs" }
]
}
],
algolia: {
apiKey: "1653e881f3a6c17d3ad37f4d4c428e20",
indexName: "pomerium"
},
sidebar: {
"/docs/": [
{
title: "",
type: "group",
collapsable: false,
sidebarDepth: 0,
children: ["", "background", "releases", "upgrading", "CHANGELOG"]
},
{
title: "Quick Start",
collapsable: false,
path: "/docs/quick-start/",
type: "group",
sidebarDepth: 0,
children: [
"quick-start/",
"quick-start/binary",
"quick-start/helm",
"quick-start/kubernetes",
"quick-start/synology"
]
},
{
title: "Identity Providers",
collapsable: false,
path: "/docs/identity-providers/",
type: "group",
sidebarDepth: 0,
children: [
"identity-providers/",
"identity-providers/azure",
"identity-providers/cognito",
"identity-providers/gitlab",
"identity-providers/google",
"identity-providers/okta",
"identity-providers/one-login"
]
},
{
title: "Reference",
collapsable: true,
path: "/docs/reference/",
type: "group",
collapsable: false,
sidebarDepth: 1,
children: [
"reference/certificates",
"reference/impersonation",
"reference/programmatic-access",
"reference/getting-users-identity",
"reference/signed-headers",
"reference/examples",
"reference/reference",
"reference/production-deployment"
]
}
],
"/community/": [
{
title: "Community",
type: "group",
collapsable: false,
sidebarDepth: 1,
children: ["", "contributing", "code-of-conduct", "security"]
}
],
"/recipes/": [
{
title: "Recipes",
type: "group",
collapsable: false,
sidebarDepth: 1,
children: ["", "ad-guard", "vs-code-server"]
}
]
}
}
};