Skip to content

Commit 802754c

Browse files
committed
Migrate to oauth2-proxy/oauth2-proxy
1 parent 4cdedc8 commit 802754c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+310
-311
lines changed

.github/CODEOWNERS

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
# Default owner should be a Pusher cloud-team member or another maintainer
2-
# unless overridden by later rules in this file
3-
* @pusher/cloud-team @syscll @steakunderscore @JoelSpeed
1+
# Default owner should be a core maintainer unless overridden by later rules in this file
2+
* @syscll @steakunderscore @JoelSpeed
43

54
# login.gov provider
65
# Note: If @timothy-spencer terms out of his appointment, your best bet
7-
# for finding somebody who can test the oauth2_proxy would be to ask somebody
6+
# for finding somebody who can test the oauth2-proxy would be to ask somebody
87
# in the login.gov team (https://login.gov/developers/), the cloud.gov team
98
# (https://cloud.gov/docs/help/), or the 18F org (https://18f.gsa.gov/contact/
109
# or the public devops channel at https://chat.18f.gov/).

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
oauth2_proxy
1+
oauth2-proxy
22
vendor
33
dist
44
release

CHANGELOG.md

Lines changed: 105 additions & 105 deletions
Large diffs are not rendered by default.

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ Download the dependencies using `go mod download`.
77

88
```bash
99
cd $GOPATH/src/github.com # Create this directory if it doesn't exist
10-
git clone [email protected]:<YOUR_FORK>/oauth2_proxy pusher/oauth2_proxy
11-
cd pusher/oauth2_proxy
10+
git clone [email protected]:<YOUR_FORK>/oauth2-proxy oauth2-proxy/oauth2-proxy
11+
cd oauth2-proxy/oauth2-proxy
1212
./configure # Setup your environment variables
1313
go mod download
1414
```

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM golang:1.14-buster AS builder
44
RUN curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.24.0
55

66
# Copy sources
7-
WORKDIR $GOPATH/src/github.com/pusher/oauth2_proxy
7+
WORKDIR $GOPATH/src/github.com/oauth2-proxy/oauth2-proxy
88

99
# Fetch dependencies
1010
COPY go.mod go.sum ./
@@ -25,9 +25,9 @@ RUN ./configure && make build && touch jwt_signing_key.pem
2525
FROM alpine:3.11
2626
COPY nsswitch.conf /etc/nsswitch.conf
2727
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
28-
COPY --from=builder /go/src/github.com/pusher/oauth2_proxy/oauth2_proxy /bin/oauth2_proxy
29-
COPY --from=builder /go/src/github.com/pusher/oauth2_proxy/jwt_signing_key.pem /etc/ssl/private/jwt_signing_key.pem
28+
COPY --from=builder /go/src/github.com/oauth2-proxy/oauth2-proxy/oauth2-proxy /bin/oauth2-proxy
29+
COPY --from=builder /go/src/github.com/oauth2-proxy/oauth2-proxy/jwt_signing_key.pem /etc/ssl/private/jwt_signing_key.pem
3030

3131
USER 2000:2000
3232

33-
ENTRYPOINT ["/bin/oauth2_proxy"]
33+
ENTRYPOINT ["/bin/oauth2-proxy"]

Dockerfile.arm64

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM golang:1.14-buster AS builder
44
RUN curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.24.0
55

66
# Copy sources
7-
WORKDIR $GOPATH/src/github.com/pusher/oauth2_proxy
7+
WORKDIR $GOPATH/src/github.com/oauth2-proxy/oauth2-proxy
88

99
# Fetch dependencies
1010
COPY go.mod go.sum ./
@@ -25,9 +25,9 @@ RUN ./configure && GOARCH=arm64 make build && touch jwt_signing_key.pem
2525
FROM arm64v8/alpine:3.11
2626
COPY nsswitch.conf /etc/nsswitch.conf
2727
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
28-
COPY --from=builder /go/src/github.com/pusher/oauth2_proxy/oauth2_proxy /bin/oauth2_proxy
29-
COPY --from=builder /go/src/github.com/pusher/oauth2_proxy/jwt_signing_key.pem /etc/ssl/private/jwt_signing_key.pem
28+
COPY --from=builder /go/src/github.com/oauth2-proxy/oauth2-proxy/oauth2-proxy /bin/oauth2-proxy
29+
COPY --from=builder /go/src/github.com/oauth2-proxy/oauth2-proxy/jwt_signing_key.pem /etc/ssl/private/jwt_signing_key.pem
3030

3131
USER 2000:2000
3232

33-
ENTRYPOINT ["/bin/oauth2_proxy"]
33+
ENTRYPOINT ["/bin/oauth2-proxy"]

Dockerfile.armv6

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM golang:1.14-buster AS builder
44
RUN curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.24.0
55

66
# Copy sources
7-
WORKDIR $GOPATH/src/github.com/pusher/oauth2_proxy
7+
WORKDIR $GOPATH/src/github.com/oauth2-proxy/oauth2-proxy
88

99
# Fetch dependencies
1010
COPY go.mod go.sum ./
@@ -25,9 +25,9 @@ RUN ./configure && GOARCH=arm GOARM=6 make build && touch jwt_signing_key.pem
2525
FROM arm32v6/alpine:3.11
2626
COPY nsswitch.conf /etc/nsswitch.conf
2727
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
28-
COPY --from=builder /go/src/github.com/pusher/oauth2_proxy/oauth2_proxy /bin/oauth2_proxy
29-
COPY --from=builder /go/src/github.com/pusher/oauth2_proxy/jwt_signing_key.pem /etc/ssl/private/jwt_signing_key.pem
28+
COPY --from=builder /go/src/github.com/oauth2-proxy/oauth2-proxy/oauth2-proxy /bin/oauth2-proxy
29+
COPY --from=builder /go/src/github.com/oauth2-proxy/oauth2-proxy/jwt_signing_key.pem /etc/ssl/private/jwt_signing_key.pem
3030

3131
USER 2000:2000
3232

33-
ENTRYPOINT ["/bin/oauth2_proxy"]
33+
ENTRYPOINT ["/bin/oauth2-proxy"]

Makefile

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
include .env
2-
BINARY := oauth2_proxy
2+
BINARY := oauth2-proxy
33
VERSION := $(shell git describe --always --dirty --tags 2>/dev/null || echo "undefined")
44
# Allow to override image registry.
5-
REGISTRY ?= quay.io/pusher
5+
REGISTRY ?= quay.io/oauth2-proxy
66
.NOTPARALLEL:
77

88
.PHONY: all
@@ -25,35 +25,35 @@ lint:
2525
build: clean $(BINARY)
2626

2727
$(BINARY):
28-
GO111MODULE=on CGO_ENABLED=0 $(GO) build -a -installsuffix cgo -ldflags="-X main.VERSION=${VERSION}" -o $@ github.com/pusher/oauth2_proxy
28+
GO111MODULE=on CGO_ENABLED=0 $(GO) build -a -installsuffix cgo -ldflags="-X main.VERSION=${VERSION}" -o $@ github.com/oauth2-proxy/oauth2-proxy
2929

3030
.PHONY: docker
3131
docker:
32-
docker build -f Dockerfile -t $(REGISTRY)/oauth2_proxy:latest .
32+
docker build -f Dockerfile -t $(REGISTRY)/oauth2-proxy:latest .
3333

3434
.PHONY: docker-all
3535
docker-all: docker
36-
docker build -f Dockerfile -t $(REGISTRY)/oauth2_proxy:latest-amd64 .
37-
docker build -f Dockerfile -t $(REGISTRY)/oauth2_proxy:${VERSION} .
38-
docker build -f Dockerfile -t $(REGISTRY)/oauth2_proxy:${VERSION}-amd64 .
39-
docker build -f Dockerfile.arm64 -t $(REGISTRY)/oauth2_proxy:latest-arm64 .
40-
docker build -f Dockerfile.arm64 -t $(REGISTRY)/oauth2_proxy:${VERSION}-arm64 .
41-
docker build -f Dockerfile.armv6 -t $(REGISTRY)/oauth2_proxy:latest-armv6 .
42-
docker build -f Dockerfile.armv6 -t $(REGISTRY)/oauth2_proxy:${VERSION}-armv6 .
36+
docker build -f Dockerfile -t $(REGISTRY)/oauth2-proxy:latest-amd64 .
37+
docker build -f Dockerfile -t $(REGISTRY)/oauth2-proxy:${VERSION} .
38+
docker build -f Dockerfile -t $(REGISTRY)/oauth2-proxy:${VERSION}-amd64 .
39+
docker build -f Dockerfile.arm64 -t $(REGISTRY)/oauth2-proxy:latest-arm64 .
40+
docker build -f Dockerfile.arm64 -t $(REGISTRY)/oauth2-proxy:${VERSION}-arm64 .
41+
docker build -f Dockerfile.armv6 -t $(REGISTRY)/oauth2-proxy:latest-armv6 .
42+
docker build -f Dockerfile.armv6 -t $(REGISTRY)/oauth2-proxy:${VERSION}-armv6 .
4343

4444
.PHONY: docker-push
4545
docker-push:
46-
docker push $(REGISTRY)/oauth2_proxy:latest
46+
docker push $(REGISTRY)/oauth2-proxy:latest
4747

4848
.PHONY: docker-push-all
4949
docker-push-all: docker-push
50-
docker push $(REGISTRY)/oauth2_proxy:latest-amd64
51-
docker push $(REGISTRY)/oauth2_proxy:${VERSION}
52-
docker push $(REGISTRY)/oauth2_proxy:${VERSION}-amd64
53-
docker push $(REGISTRY)/oauth2_proxy:latest-arm64
54-
docker push $(REGISTRY)/oauth2_proxy:${VERSION}-arm64
55-
docker push $(REGISTRY)/oauth2_proxy:latest-armv6
56-
docker push $(REGISTRY)/oauth2_proxy:${VERSION}-armv6
50+
docker push $(REGISTRY)/oauth2-proxy:latest-amd64
51+
docker push $(REGISTRY)/oauth2-proxy:${VERSION}
52+
docker push $(REGISTRY)/oauth2-proxy:${VERSION}-amd64
53+
docker push $(REGISTRY)/oauth2-proxy:latest-arm64
54+
docker push $(REGISTRY)/oauth2-proxy:${VERSION}-arm64
55+
docker push $(REGISTRY)/oauth2-proxy:latest-armv6
56+
docker push $(REGISTRY)/oauth2-proxy:${VERSION}-armv6
5757

5858
.PHONY: test
5959
test: lint

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
![OAuth2 Proxy](/docs/logos/OAuth2_Proxy_horizontal.svg)
22

3-
[![Build Status](https://secure.travis-ci.org/pusher/oauth2_proxy.svg?branch=master)](http://travis-ci.org/pusher/oauth2_proxy)
4-
[![Go Report Card](https://goreportcard.com/badge/github.com/pusher/oauth2_proxy)](https://goreportcard.com/report/github.com/pusher/oauth2_proxy)
5-
[![GoDoc](https://godoc.org/github.com/pusher/oauth2_proxy?status.svg)](https://godoc.org/github.com/pusher/oauth2_proxy)
3+
[![Build Status](https://secure.travis-ci.org/oauth2-proxy/oauth2-proxy.svg?branch=master)](http://travis-ci.org/oauth2-proxy/oauth2-proxy)
4+
[![Go Report Card](https://goreportcard.com/badge/github.com/oauth2-proxy/oauth2-proxy)](https://goreportcard.com/report/github.com/oauth2-proxy/oauth2-proxy)
5+
[![GoDoc](https://godoc.org/github.com/oauth2-proxy/oauth2-proxy?status.svg)](https://godoc.org/github.com/oauth2-proxy/oauth2-proxy)
66
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)
77

88
A reverse proxy and static file server that provides authentication using Providers (Google, GitHub, and others)
@@ -18,31 +18,31 @@ A list of changes can be seen in the [CHANGELOG](CHANGELOG.md).
1818

1919
1. Choose how to deploy:
2020

21-
a. Download [Prebuilt Binary](https://github.com/pusher/oauth2_proxy/releases) (current release is `v5.0.0`)
21+
a. Download [Prebuilt Binary](https://github.com/oauth2-proxy/oauth2-proxy/releases) (current release is `v5.1.0`)
2222

23-
b. Build with `$ go get github.com/pusher/oauth2_proxy` which will put the binary in `$GOROOT/bin`
23+
b. Build with `$ go get github.com/oauth2-proxy/oauth2-proxy` which will put the binary in `$GOROOT/bin`
2424

25-
c. Using the prebuilt docker image [quay.io/pusher/oauth2_proxy](https://quay.io/pusher/oauth2_proxy) (AMD64, ARMv6 and ARM64 tags available)
25+
c. Using the prebuilt docker image [quay.io/oauth2-proxy/oauth2-proxy](https://quay.io/oauth2-proxy/oauth2-proxy) (AMD64, ARMv6 and ARM64 tags available)
2626

2727
Prebuilt binaries can be validated by extracting the file and verifying it against the `sha256sum.txt` checksum file provided for each release starting with version `v3.0.0`.
2828

2929
```
3030
sha256sum -c sha256sum.txt 2>&1 | grep OK
31-
oauth2_proxy-4.0.0.linux-amd64: OK
31+
oauth2-proxy-x.y.z.linux-amd64: OK
3232
```
3333

34-
2. [Select a Provider and Register an OAuth Application with a Provider](https://pusher.github.io/oauth2_proxy/auth-configuration)
35-
3. [Configure OAuth2 Proxy using config file, command line options, or environment variables](https://pusher.github.io/oauth2_proxy/configuration)
36-
4. [Configure SSL or Deploy behind a SSL endpoint](https://pusher.github.io/oauth2_proxy/tls-configuration) (example provided for Nginx)
34+
2. [Select a Provider and Register an OAuth Application with a Provider](https://oauth2-proxy.github.io/oauth2-proxy/auth-configuration)
35+
3. [Configure OAuth2 Proxy using config file, command line options, or environment variables](https://oauth2-proxy.github.io/oauth2-proxy/configuration)
36+
4. [Configure SSL or Deploy behind a SSL endpoint](https://oauth2-proxy.github.io/oauth2-proxy/tls-configuration) (example provided for Nginx)
3737

3838

3939
## Security
4040

41-
If you are running a version older than v5.0.0 we **strongly recommend you please update** to a current version. RE: [open redirect vulnverability](https://github.com/pusher/oauth2_proxy/security/advisories/GHSA-qqxw-m5fj-f7gv)
41+
If you are running a version older than v5.0.0 we **strongly recommend you please update** to a current version. RE: [open redirect vulnverability](https://github.com/oauth2-proxy/oauth2-proxy/security/advisories/GHSA-qqxw-m5fj-f7gv)
4242

4343
## Docs
4444

45-
Read the docs on our [Docs site](https://pusher.github.io/oauth2_proxy).
45+
Read the docs on our [Docs site](https://oauth2-proxy.github.io/oauth2-proxy).
4646

4747
![OAuth2 Proxy Architecture](https://cloud.githubusercontent.com/assets/45028/8027702/bd040b7a-0d6a-11e5-85b9-f8d953d04f39.png)
4848

RELEASE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release
22

3-
Here's how OAuth2_Proxy releases are created.
3+
Here's how OAuth2 Proxy releases are created.
44

55
## Schedule
66

@@ -44,4 +44,4 @@ Note this uses `v4.1.0` as an example release number.
4444
```
4545
Note: Ensure the docker tags don't include `-dirty`. This means you have uncommitted changes.
4646

47-
12. Verify everything looks good at [quay](https://quay.io/repository/pusher/oauth2_proxy?tag=latest&tab=tags) and [github](https://github.com/pusher/oauth2_proxy/releases)
47+
12. Verify everything looks good at [quay](https://quay.io/repository/oauth2-proxy/oauth2-proxy?tag=latest&tab=tags) and [github](https://github.com/oauth2-proxy/oauth2-proxy/releases)

contrib/oauth2_proxy.cfg.example renamed to contrib/oauth2-proxy.cfg.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## OAuth2 Proxy Config File
2-
## https://github.com/pusher/oauth2_proxy
2+
## https://github.com/oauth2-proxy/oauth2-proxy
33

44
## <addr>:<port> to listen on for HTTP/HTTPS clients
55
# http_address = "127.0.0.1:4180"

contrib/oauth2_proxy.service.example renamed to contrib/oauth2-proxy.service.example

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
# Systemd service file for oauth2_proxy daemon
1+
# Systemd service file for oauth2-proxy daemon
22
#
33
# Date: Feb 9, 2016
44
# Author: Srdjan Grubor <[email protected]>
55

66
[Unit]
7-
Description=oauth2_proxy daemon service
7+
Description=oauth2-proxy daemon service
88
After=syslog.target network.target
99

1010
[Service]
1111
# www-data group and user need to be created before using these lines
1212
User=www-data
1313
Group=www-data
1414

15-
ExecStart=/usr/local/bin/oauth2_proxy -config=/etc/oauth2_proxy.cfg
15+
ExecStart=/usr/local/bin/oauth2-proxy -config=/etc/oauth2-proxy.cfg
1616
ExecReload=/bin/kill -HUP $MAINPID
1717

1818
KillMode=process

contrib/oauth2_proxy_autocomplete.sh renamed to contrib/oauth2-proxy_autocomplete.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#
2-
# Autocompletion for oauth2_proxy
2+
# Autocompletion for oauth2-proxy
33
#
44
# To install this, copy/move this file to /etc/bash.completion.d/
5-
# or add a line to your ~/.bashrc | ~/.bash_profile that says ". /path/to/oauth2_proxy/contrib/oauth2_proxy_autocomplete.sh"
5+
# or add a line to your ~/.bashrc | ~/.bash_profile that says ". /path/to/oauth2-proxy/contrib/oauth2-proxy_autocomplete.sh"
66
#
77

88
_oauth2_proxy() {
9-
_oauth2_proxy_commands=$(oauth2_proxy -h 2>&1 | sed -n '/^\s*-/s/ \+/ /gp' | awk '{print $1}' | tr '\n' ' ')
9+
_oauth2_proxy_commands=$(oauth2-proxy -h 2>&1 | sed -n '/^\s*-/s/ \+/ /gp' | awk '{print $1}' | tr '\n' ' ')
1010
local cur prev
1111
COMPREPLY=()
1212
cur="${COMP_WORDS[COMP_CWORD]}"
@@ -27,4 +27,4 @@ _oauth2_proxy() {
2727
COMPREPLY=( $(compgen -W "${_oauth2_proxy_commands}" -- ${cur}) )
2828
return 0;
2929
}
30-
complete -F _oauth2_proxy oauth2_proxy
30+
complete -F _oauth2_proxy oauth2-proxy

dist.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ for ARCH in "${ARCHS[@]}"; do
2828
# Create architecture specific binaries
2929
if [[ ${GO_ARCH} == "armv6" ]]; then
3030
GO111MODULE=on GOOS=${GO_OS} GOARCH=arm GOARM=6 CGO_ENABLED=0 go build -ldflags="-X main.VERSION=${VERSION}" \
31-
-o release/${BINARY}-${VERSION}.${ARCH}.${GO_VERSION}/${BINARY} github.com/pusher/oauth2_proxy
31+
-o release/${BINARY}-${VERSION}.${ARCH}.${GO_VERSION}/${BINARY} github.com/oauth2-proxy/oauth2-proxy
3232
else
3333
GO111MODULE=on GOOS=${GO_OS} GOARCH=${GO_ARCH} CGO_ENABLED=0 go build -ldflags="-X main.VERSION=${VERSION}" \
34-
-o release/${BINARY}-${VERSION}.${ARCH}.${GO_VERSION}/${BINARY} github.com/pusher/oauth2_proxy
34+
-o release/${BINARY}-${VERSION}.${ARCH}.${GO_VERSION}/${BINARY} github.com/oauth2-proxy/oauth2-proxy
3535
fi
3636

3737
cd release

docs/0_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ to validate accounts by email, domain or group.
1414
Versions v3.0.0 and up are from this fork and will have diverged from any changes in the original fork.
1515
A list of changes can be seen in the [CHANGELOG]({{ site.gitweb }}/CHANGELOG.md).
1616

17-
[![Build Status](https://secure.travis-ci.org/pusher/oauth2_proxy.svg?branch=master)](http://travis-ci.org/pusher/oauth2_proxy)
17+
[![Build Status](https://secure.travis-ci.org/oauth2-proxy/oauth2-proxy.svg?branch=master)](http://travis-ci.org/oauth2-proxy/oauth2-proxy)
1818

1919
![Sign In Page](https://cloud.githubusercontent.com/assets/45028/4970624/7feb7dd8-6886-11e4-93e0-c9904af44ea8.png)
2020

docs/1_installation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ nav_order: 1
99

1010
1. Choose how to deploy:
1111

12-
a. Download [Prebuilt Binary](https://github.com/pusher/oauth2_proxy/releases) (current release is `v4.0.0`)
12+
a. Download [Prebuilt Binary](https://github.com/oauth2-proxy/oauth2-proxy/releases) (current release is `v5.1.0`)
1313

14-
b. Build with `$ go get github.com/pusher/oauth2_proxy` which will put the binary in `$GOROOT/bin`
14+
b. Build with `$ go get github.com/oauth2-proxy/oauth2-proxy` which will put the binary in `$GOROOT/bin`
1515

16-
c. Using the prebuilt docker image [quay.io/pusher/oauth2_proxy](https://quay.io/pusher/oauth2_proxy) (AMD64, ARMv6 and ARM64 tags available)
16+
c. Using the prebuilt docker image [quay.io/oauth2-proxy/oauth2-proxy](https://quay.io/oauth2-proxy/oauth2-proxy) (AMD64, ARMv6 and ARM64 tags available)
1717

1818
Prebuilt binaries can be validated by extracting the file and verifying it against the `sha256sum.txt` checksum file provided for each release starting with version `v3.0.0`.
1919

2020
```
2121
$ sha256sum -c sha256sum.txt 2>&1 | grep OK
22-
oauth2_proxy-4.0.0.linux-amd64: OK
22+
oauth2-proxy-x.y.z.linux-amd64: OK
2323
```
2424

2525
2. [Select a Provider and Register an OAuth Application with a Provider](auth-configuration)

0 commit comments

Comments
 (0)