diff --git a/docs/docs/reference/examples/config/config.example.env b/docs/docs/reference/examples/config/config.example.env index 6c7b28ff5..52088016a 100644 --- a/docs/docs/reference/examples/config/config.example.env +++ b/docs/docs/reference/examples/config/config.example.env @@ -1,5 +1,5 @@ #!/bin/bash -# Main configuration flags : https://www.pomerium.io/reference/ +# Main configuration flags : https://www.pomerium.io/docs/reference/reference/ # Main configuration flags # export ADDRESS=":8443" # optional, default is 443 @@ -12,7 +12,7 @@ export AUTHORIZE_SERVICE_URL=https://authorize.corp.beyondperimeter.com # Certificates can be loaded as files or base64 encoded bytes. If neither is set, a # pomerium will attempt to locate a pair in the root directory -# See : https://www.pomerium.io/docs/certificates.html +# See : https://www.pomerium.io/docs/reference/certificates export CERTIFICATE_FILE="$HOME/.acme.sh/*.corp.beyondperimeter.com_ecc/fullchain.cer" # optional, defaults to `./cert.pem` export CERTIFICATE_KEY_FILE="$HOME/.acme.sh/*.corp.beyondperimeter.com_ecc/*.corp.beyondperimeter.com.key" # optional, defaults to `./certprivkey.pem` # export CERTIFICATE="xxxxxx" # base64 encoded cert, eg. `base64 -i cert.pem` diff --git a/docs/docs/reference/examples/config/config.example.yaml b/docs/docs/reference/examples/config/config.example.yaml index 81af584d1..ad1b32dbe 100644 --- a/docs/docs/reference/examples/config/config.example.yaml +++ b/docs/docs/reference/examples/config/config.example.yaml @@ -1,4 +1,4 @@ -# Main configuration flags : https://www.pomerium.io/reference/ +# Main configuration flags : https://www.pomerium.io/docs/reference/reference/ # # address: ":8443" # optional, default is 443 # pomerium_debug: true # optional, default is false diff --git a/docs/docs/reference/examples/config/config.minimal.env b/docs/docs/reference/examples/config/config.minimal.env index 131027ddf..0e01cbe9a 100644 --- a/docs/docs/reference/examples/config/config.minimal.env +++ b/docs/docs/reference/examples/config/config.minimal.env @@ -1,6 +1,6 @@ #!/bin/bash -# See : https://www.pomerium.io/docs/certificates.html +# See : https://www.pomerium.io/docs/reference/certificates export CERTIFICATE_FILE="$HOME/.acme.sh/*.corp.beyondperimeter.com_ecc/fullchain.cer" # optional, defaults to `./cert.pem` export CERTIFICATE_KEY_FILE="$HOME/.acme.sh/*.corp.beyondperimeter.com_ecc/*.corp.beyondperimeter.com.key" # optional, defaults to `./certprivkey.pem` diff --git a/docs/docs/reference/examples/config/config.minimal.yaml b/docs/docs/reference/examples/config/config.minimal.yaml index af074c58b..12f602e58 100644 --- a/docs/docs/reference/examples/config/config.minimal.yaml +++ b/docs/docs/reference/examples/config/config.minimal.yaml @@ -1,4 +1,4 @@ -# See detailed configuration settings : https://www.pomerium.io/reference/ +# See detailed configuration settings : https://www.pomerium.io/docs/reference/reference/ authenticate_service_url: https://authenticate.corp.beyondperimeter.com authorize_service_url: https://authorize.corp.beyondperimeter.com diff --git a/docs/docs/reference/examples/config/config.visual-studio-code.yaml b/docs/docs/reference/examples/config/config.visual-studio-code.yaml index d74ba29e5..68f95450e 100644 --- a/docs/docs/reference/examples/config/config.visual-studio-code.yaml +++ b/docs/docs/reference/examples/config/config.visual-studio-code.yaml @@ -1,4 +1,4 @@ -# See detailed configuration settings : https://www.pomerium.io/reference/ +# See detailed configuration settings : https://www.pomerium.io/docs/reference/reference/ authenticate_service_url: https://authenticate.corp.domain.example authorize_service_url: https://authorize.corp.domain.example diff --git a/docs/docs/reference/examples/config/policy.example.yaml b/docs/docs/reference/examples/config/policy.example.yaml index dc334c91d..6b94c4dbb 100644 --- a/docs/docs/reference/examples/config/policy.example.yaml +++ b/docs/docs/reference/examples/config/policy.example.yaml @@ -1,6 +1,6 @@ # This file contains only policy and route configuration details. Other # configuration settings required by pomerium are excluded for clarity. -# See: https://www.pomerium.io/reference/ +# See: https://www.pomerium.io/docs/reference/reference/ # # For a complete self contained configuration see : config.example.yaml. # Or, mix and match a policy file (this) with env vars : config.example.env diff --git a/docs/docs/reference/examples/docker/basic.docker-compose.yml b/docs/docs/reference/examples/docker/basic.docker-compose.yml index ddc5c3d52..f97ebc4b3 100644 --- a/docs/docs/reference/examples/docker/basic.docker-compose.yml +++ b/docs/docs/reference/examples/docker/basic.docker-compose.yml @@ -6,10 +6,10 @@ services: # Generate new secret keys. e.g. `head -c32 /dev/urandom | base64` - COOKIE_SECRET=V2JBZk0zWGtsL29UcFUvWjVDWWQ2UHExNXJ0b2VhcDI= volumes: - # Mount your domain's certificates : https://www.pomerium.io/docs/certificates.html + # Mount your domain's certificates : https://www.pomerium.io/docs/reference/certificates - ~/.acme.sh/*.corp.beyondperimeter.com_ecc/fullchain.cer:/pomerium/cert.pem:ro - ~/.acme.sh/*.corp.beyondperimeter.com_ecc/*.corp.beyondperimeter.com.key:/pomerium/privkey.pem:ro - # Mount your config file : https://www.pomerium.io/reference/ + # Mount your config file : https://www.pomerium.io/docs/reference/reference/ - ../config/config.minimal.yaml:/pomerium/config.yaml:ro ports: - 443:443 diff --git a/docs/docs/reference/examples/docker/nginx.docker-compose.yml b/docs/docs/reference/examples/docker/nginx.docker-compose.yml index c45c24647..a1fb5d030 100644 --- a/docs/docs/reference/examples/docker/nginx.docker-compose.yml +++ b/docs/docs/reference/examples/docker/nginx.docker-compose.yml @@ -34,7 +34,7 @@ services: volumes: - ~/.acme.sh/*.corp.beyondperimeter.com_ecc/fullchain.cer:/pomerium/cert.pem:ro - ~/.acme.sh/*.corp.beyondperimeter.com_ecc/*.corp.beyondperimeter.com.key:/pomerium/privkey.pem:ro - # Retrieve non-secret config keys from the config file : https://www.pomerium.io/reference/ + # Retrieve non-secret config keys from the config file : https://www.pomerium.io/docs/reference/reference/ # See `config.example.yaml` and modify to fit your needs. - ../config/config.example.yaml:/pomerium/config.yaml:ro @@ -61,7 +61,7 @@ services: volumes: - ~/.acme.sh/*.corp.beyondperimeter.com_ecc/fullchain.cer:/pomerium/cert.pem:ro - ~/.acme.sh/*.corp.beyondperimeter.com_ecc/*.corp.beyondperimeter.com.key:/pomerium/privkey.pem:ro - # Retrieve non-secret config keys from the config file : https://www.pomerium.io/reference/ + # Retrieve non-secret config keys from the config file : https://www.pomerium.io/docs/reference/reference/ # See `config.example.yaml` and modify to fit your needs. - ../config/config.example.yaml:/pomerium/config.yaml:ro expose: @@ -80,7 +80,7 @@ services: volumes: - ~/.acme.sh/*.corp.beyondperimeter.com_ecc/fullchain.cer:/pomerium/cert.pem:ro - ~/.acme.sh/*.corp.beyondperimeter.com_ecc/*.corp.beyondperimeter.com.key:/pomerium/privkey.pem:ro - # Retrieve non-secret config keys from the config file : https://www.pomerium.io/reference/ + # Retrieve non-secret config keys from the config file : https://www.pomerium.io/docs/reference/reference/ # See `config.example.yaml` and modify to fit your needs. - ../config/config.example.yaml:/pomerium/config.yaml:ro expose: diff --git a/docs/docs/reference/examples/kubernetes/kubernetes-config.yaml b/docs/docs/reference/examples/kubernetes/kubernetes-config.yaml index 73ae5428a..b0edc115f 100644 --- a/docs/docs/reference/examples/kubernetes/kubernetes-config.yaml +++ b/docs/docs/reference/examples/kubernetes/kubernetes-config.yaml @@ -1,4 +1,4 @@ -# Main configuration flags : https://www.pomerium.io/reference/ +# Main configuration flags : https://www.pomerium.io/docs/reference/reference/ authenticate_service_url: https://authenticate.corp.beyondperimeter.com authorize_service_url: https://pomerium-authorize-service.default.svc.cluster.local