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

* docs: fix image linkes for cdn

* docs: use relative top level redirect

* docs: generate sitemap under /docs/

Co-authored-by: Travis Groth <travisgroth@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2020-08-12 12:26:23 -07:00 committed by GitHub
parent fde2d905c7
commit c5ce2f1996
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: {
hostname: "https://www.pomerium.io",
outFile: "docs/sitemap.xml"
},
"@vuepress/google-analytics": {
ga: "UA-129872447-2",
@ -19,7 +20,7 @@ module.exports = {
},
themeConfig: {
home: false,
logo: "/logo-long-civez.png",
logo: "/img/logo-long-civez.png",
repo: "pomerium/pomerium",
editLinks: true,
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.
<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
@ -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.
<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
@ -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.
<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>
## In action

View file

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