docs: image, sitemap and redirect fixes (#1263)

* docs: fix image linkes for cdn

* docs: use relative top level redirect

* docs: generate sitemap under /docs/
This commit is contained in:
Travis Groth 2020-08-12 15:22:53 -04:00 committed by GitHub
parent 8d7f82de4e
commit 6314c43f40
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 6 additions and 5 deletions

View file

@ -9,6 +9,7 @@ module.exports = {
}, },
sitemap: { sitemap: {
hostname: "https://www.pomerium.io", hostname: "https://www.pomerium.io",
outFile: "docs/sitemap.xml"
}, },
"@vuepress/google-analytics": { "@vuepress/google-analytics": {
ga: "UA-129872447-2", ga: "UA-129872447-2",
@ -19,7 +20,7 @@ module.exports = {
}, },
themeConfig: { themeConfig: {
home: false, home: false,
logo: "/logo-long-civez.png", logo: "/img/logo-long-civez.png",
repo: "pomerium/pomerium", repo: "pomerium/pomerium",
editLinks: true, editLinks: true,
docsDir: "docs", docsDir: "docs",

View file

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 22 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 29 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 26 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 96 KiB

After

Width:  |  Height:  |  Size: 96 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 36 KiB

Before After
Before After

View file

@ -33,7 +33,7 @@ Pomerium can be used to:
Pomerium sits between end users and services requiring strong authentication. After verifying identity with your identity provider (IdP), Pomerium uses a configurable policy to decide how to route your user's request and if they are authorized to access the service. Pomerium sits between end users and services requiring strong authentication. After verifying identity with your identity provider (IdP), Pomerium uses a configurable policy to decide how to route your user's request and if they are authorized to access the service.
<img alt="pomerium architecture diagram" src="/pomerium-system-context.svg" width="65%"> <img alt="pomerium architecture diagram" src="./img/pomerium-system-context.svg" width="65%">
### Component Level ### Component Level
@ -64,7 +64,7 @@ In production deployments, it is recommended that you deploy each component sepa
In test deployments, all four components may run from a single binary and configuration. In test deployments, all four components may run from a single binary and configuration.
<img alt="pomerium architecture diagram" src="/pomerium-container-context.svg" width="65%"> <img alt="pomerium architecture diagram" src="./img/pomerium-container-context.svg" width="65%">
### Authentication Flow ### Authentication Flow
@ -73,7 +73,7 @@ Pomerium's internal and external component interactions during full authenticati
After initial authentication to provide a session token, only the authorization check interactions occur. After initial authentication to provide a session token, only the authorization check interactions occur.
<a href="/pomerium-auth-flow.svg"> <a href="/pomerium-auth-flow.svg">
<img alt="pomerium architecture diagram" src="/pomerium-auth-flow.svg"> <img alt="pomerium architecture diagram" src="./img/pomerium-auth-flow.svg">
</a> </a>
## In action ## In action

View file

@ -1,2 +1,2 @@
<!-- Simply redirect back to docs! --> <!-- Simply redirect back to docs! -->
<Redirect to="https://www.pomerium.com/docs/" /> <Redirect to="/docs/" />