mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-01 19:36:32 +02:00
- Update PR template to use Go language conventions. - Moved healthcheck middleware to hijack a request before logging. - Rewrote the quickstart guides to follow a similar pattern. - Added an overview blurb on pomerium and its goals. - Add an "example config" section to docs.
40 lines
767 B
JavaScript
40 lines
767 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: ["", "docker", "kubernetes", "from-source"]
|
|
}
|
|
];
|
|
}
|
|
|
|
function docsSidebar(title) {
|
|
return [
|
|
{
|
|
title,
|
|
collapsable: false,
|
|
children: ["", "identity-providers", "signed-headers", "examples"]
|
|
}
|
|
];
|
|
}
|