Pomerium is an identity and context-aware access proxy.
Find a file
dependabot[bot] b9c56074aa
chore(deps): bump github.com/coreos/go-oidc/v3 from 3.6.0 to 3.8.0 (#4791)
Bumps [github.com/coreos/go-oidc/v3](https://github.com/coreos/go-oidc) from 3.6.0 to 3.8.0.
- [Release notes](https://github.com/coreos/go-oidc/releases)
- [Commits](https://github.com/coreos/go-oidc/compare/v3.6.0...v3.8.0)

---
updated-dependencies:
- dependency-name: github.com/coreos/go-oidc/v3
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-07 14:45:25 -07:00
.github chore(deps): bump distroless/base-debian12 from d64f548 to 1dfdb5e in /.github (#4671) 2023-12-07 13:59:24 -07:00
.vscode
authenticate authenticateflow: move stateless flow logic (#4820) 2023-12-06 16:55:57 -08:00
authorize authenticateflow: move stateless flow logic (#4820) 2023-12-06 16:55:57 -08:00
cmd/pomerium core/go: use max procs (#4766) 2023-12-07 09:14:57 -07:00
config core/redis: remove redis (#4768) 2023-11-28 13:14:36 -07:00
databroker
examples core/redis: remove redis (#4768) 2023-11-28 13:14:36 -07:00
integration integration: re-generate test configurations (#4816) 2023-12-05 12:49:03 -08:00
internal authenticateflow: add stateful flow (#4822) 2023-12-07 09:54:42 -08:00
ospkg
pkg storage/inmemory: fix Patch() error handling (#4838) 2023-12-07 12:21:10 -08:00
proxy authenticateflow: move stateless flow logic (#4820) 2023-12-06 16:55:57 -08:00
scripts
ui
.codecov.yml
.dockerignore
.fossa.yml
.gitattributes
.gitignore
.golangci.yml
.pre-commit-config.yaml
.tool-versions update to Go 1.21.4 (#4770) 2023-11-29 19:16:12 -08:00
3RD-PARTY
DEBUG.MD
Dockerfile chore(deps): bump golang from 1.21.4-bookworm to 1.21.5-bookworm (#4828) 2023-12-07 12:30:31 -05:00
Dockerfile.debug chore(deps): bump golang from 1.21.4-bookworm to 1.21.5-bookworm (#4828) 2023-12-07 12:30:31 -05:00
go.mod chore(deps): bump github.com/coreos/go-oidc/v3 from 3.6.0 to 3.8.0 (#4791) 2023-12-07 14:45:25 -07:00
go.sum chore(deps): bump github.com/coreos/go-oidc/v3 from 3.6.0 to 3.8.0 (#4791) 2023-12-07 14:45:25 -07:00
LICENSE
Makefile
pomerium.go
README.md
RELEASING.md
SECURITY.md

pomerium logo

Go Report Card GoDoc LICENSE Docker Pulls

Pomerium builds secure, clientless connections to internal web apps and services without a corporate VPN.

Pomerium is:

  • Easier because you dont have to maintain a client or software.
  • Faster because its deployed directly where your apps and services are. No more expensive data backhauling.
  • Safer because every single action is verified for trusted identity, device, and context.

Its not a VPN alternative its the trusted, foolproof way to protect your business.

Docs

For comprehensive docs, and tutorials see our documentation.

Integration Tests

To run the integration tests locally, first build a local development image:

./scripts/build-dev-docker.bash

Next go to the integration/clusters folder and pick a cluster, for example google-single, then use docker-compose to start the cluster. We use an environment variable to specify the dev docker image we built earlier:

cd integration/clusters/google-single
env POMERIUM_TAG=dev docker-compose up -V

Once that's up and running you can run the integration tests from another terminal:

go test -count=1 -v ./integration/...

If you need to make a change to the clusters themselves, there's a tpl folder that contains jsonnet files. Make a change and then rebuild the clusters by running:

go run ./integration/cmd/pomerium-integration-tests/ generate-configuration