Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge from jordemort/traefik-forward-auth #4

Closed
wants to merge 21 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
2425768
Allow custom key to be used for whitelist and X-Forwarded-User instea…
jordemort Nov 5, 2022
f66cb9a
Domain matching should be case insensitive (#2)
jordemort Nov 5, 2022
0b3b8f8
fix too many forward_auth cookies (#3)
jordemort Nov 5, 2022
74b0194
feature: trusted ip address ranges skip authentication (#4)
jordemort Nov 5, 2022
e8ab996
Use Go 1.19 in CI (#5)
jordemort Nov 5, 2022
f3d1473
Update dependencies (#6)
jordemort Nov 5, 2022
d476ec0
Redo Dockerfile with Go 1.19 and distroless (#7)
jordemort Nov 5, 2022
a280dd5
Create dependabot.yml
jordemort Nov 5, 2022
3480fa8
Bump github/codeql-action from 1 to 2 (#8)
dependabot[bot] Nov 5, 2022
3d568c1
Bump actions/setup-go from 2 to 3 (#9)
dependabot[bot] Nov 5, 2022
c7be07a
Bump actions/checkout from 2 to 3 (#10)
dependabot[bot] Nov 5, 2022
c7b6e99
Bump github.com/stretchr/testify from 1.8.0 to 1.8.1 (#11)
dependabot[bot] Nov 5, 2022
4cea39d
Fix most of the issues CodeQL dislikes (#12)
jordemort Nov 5, 2022
7a01be9
Validate redirect domain (#13)
jordemort Nov 5, 2022
744d0af
Workflow update: build container, rename master to main (#14)
jordemort Nov 6, 2022
8bd0c35
Run tests as part of container build (#15)
jordemort Nov 6, 2022
68ca6b1
Update README (#16)
jordemort Nov 6, 2022
999bfe8
Update README.md
jordemort Nov 9, 2022
c5805c2
Bump docker/setup-buildx-action from 2.0.0 to 2.2.1 (#17)
dependabot[bot] Jan 12, 2023
d2b0f9f
Bump github.com/traefik/traefik/v2 from 2.9.4 to 2.9.6 (#21)
dependabot[bot] Jan 12, 2023
d793555
Bump golang.org/x/oauth2 from 0.1.0 to 0.4.0 (#22)
dependabot[bot] Jan 13, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Run tests as part of container build (#15)
jordemort authored Nov 6, 2022
commit 8bd0c356606725364b143eb4cd2fe5c78232acb7
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -4,6 +4,7 @@ FROM golang:1.19 as build
WORKDIR /usr/src/traefik-forward-auth
COPY . .

RUN go test ./...
RUN CGO_ENABLED=0 go build -o ./traefik-forward-auth ./cmd

# Now copy it into our base image.