This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/proxy
dependabot-preview[bot] 3beca0574d
build(deps): bump github.com/sirupsen/logrus in /proxy (#219)
Bumps [github.com/sirupsen/logrus](https://github.com/sirupsen/logrus) from 1.4.2 to 1.6.0.
- [Release notes](https://github.com/sirupsen/logrus/releases)
- [Changelog](https://github.com/sirupsen/logrus/blob/master/CHANGELOG.md)
- [Commits](https://github.com/sirupsen/logrus/compare/v1.4.2...v1.6.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-09-17 10:01:23 +02:00
..
cmd Proxy v2 (#189) 2020-09-03 00:04:12 +02:00
pkg proxy: fix listening on wrong ip 2020-09-10 21:13:26 +02:00
.dockerignore Proxy v2 (#189) 2020-09-03 00:04:12 +02:00
.gitignore Proxy v2 (#189) 2020-09-03 00:04:12 +02:00
Dockerfile Proxy v2 (#189) 2020-09-03 00:04:12 +02:00
Makefile proxy: bump versions 2020-09-17 09:35:16 +02:00
README.md Proxy v2 (#189) 2020-09-03 00:04:12 +02:00
azure-pipelines.yml Proxy v2 (#189) 2020-09-03 00:04:12 +02:00
go.mod build(deps): bump github.com/sirupsen/logrus in /proxy (#219) 2020-09-17 10:01:23 +02:00
go.sum build(deps): bump github.com/sirupsen/logrus in /proxy (#219) 2020-09-17 10:01:23 +02:00
main.go Proxy v2 (#189) 2020-09-03 00:04:12 +02:00

README.md

passbook Proxy

CI Build status Docker pulls (proxy)

Reverse Proxy based on oauth2_proxy, completely managed and monitored by passbook.

Usage

passbook Proxy is built to be configured by passbook itself, hence the only options you can directly give it are connection params.

The following environment variable are implemented:

PASSBOOK_HOST: Full URL to the passbook instance with protocol, i.e. "https://passbook.company.tld"

PASSBOOK_TOKEN: Token used to authenticate against passbook. This is generated after an Outpost instance is created.

PASSBOOK_INSECURE: This environment variable can optionally be set to ignore the SSL Certificate of the passbook instance. Applies to both HTTP and WS connections.

Development

passbook Proxy uses an auto-generated API Client to communicate with passbook. This client is not kept in git. To generate the client locally, run make generate.

Afterwards you can build the proxy like any other Go project, using go build.