pomerium/docs/.vuepress/config.js
Bobby DeSimone 236e5cd7de
authenticate: remove extra login page (#34)
- Fixed a bug where Lifetime TTL was set to a minute.
- Remove nested mux in authenticate handlers.
- Remove extra ping endpoint in authenticate and proxy.
- Simplified sign in flow with multi-catch case statement.
- Removed debugging logging.
- Broke out cmd/pomerium options into own file.
- Renamed msicreant cipher to just cipher.

Closes #23
2019-01-29 20:28:55 -08:00

40 lines
757 B
JavaScript

// .vuepress/config.js
module.exports = {
title: "Pomerium",
description: "Just playing around",
themeConfig: {
repo: "pomerium/pomerium",
editLinks: true,
docsDir: "docs",
editLinkText: "Edit this page on GitHub",
lastUpdated: "Last Updated",
nav: [{ text: "Quick Start", link: "/guide/" },
{ text: "Documentation", link: "/docs/" }],
sidebar: {
"/guide/": guideSidebar("Quick Start"),
"/docs/": docsSidebar("Documentation")
}
}
};
function guideSidebar(title) {
return [
{
title,
collapsable: false,
children: ["", "kubernetes", "from-source"]
}
];
}
function docsSidebar(title) {
return [
{
title,
collapsable: false,
children: ["", "identity-providers", "signed-headers", "examples"]
}
];
}