authorize: fix headers when impersonating

- Add user impersonation docs.
- Add navbar link to v0.0.5 docs.
This commit is contained in:
Bobby DeSimone 2019-06-11 15:40:28 -07:00
parent fb92466f45
commit 554e62108f
No known key found for this signature in database
GPG key ID: AEE4CF12FE86D07E
8 changed files with 134 additions and 21 deletions

View file

@ -24,6 +24,7 @@ module.exports = {
{
text: 'Versions',
items: [
{ text: 'v0.0.5', link: 'https://v0-0-5.docs.pomerium.io/' },
{ text: 'v0.0.4', link: 'https://v0-0-4.docs.pomerium.io/' },
]
},
@ -42,7 +43,7 @@ function guideSidebar(title) {
{
title,
collapsable: false,
children: ["", "binary","from-source","helm", "kubernetes", "synology"]
children: ["", "binary", "from-source", "helm", "kubernetes", "synology"]
}
];
}
@ -52,7 +53,7 @@ function docsSidebar(title) {
{
title,
collapsable: false,
children: ["", "identity-providers", "signed-headers", "certificates", "examples", "upgrading"]
children: ["", "identity-providers", "signed-headers", "certificates", "examples", "impersonation", "upgrading"]
}
];
}