Skip to content

Commit

Permalink
(chore) update version references
Browse files Browse the repository at this point in the history
  • Loading branch information
leonjza committed Jul 5, 2023
1 parent 028e515 commit 4fd1b5f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

`trauth` reads [htpasswd](https://httpd.apache.org/docs/2.4/programs/htpasswd.html) formatted data as a credentials database, prompting via HTTP basic auth. Once authenticated, a (configurable) cookie will be set such that any other services sharing that domain will also be authenticated.

**Note:** This plugin changed significantly in the version 2 release from a ForwardAuth server to a middleware plugin. If you are interested in the ForwardAuth server then checkout the [latest version 1.3 tag](https://github.com/leonjza/trauth/tree/1.3.1).
**Note:** This plugin changed significantly in the version 1.4.x release from a ForwardAuth server to a middleware plugin. If you are interested in the ForwardAuth server then checkout the [latest version 1.3 tag](https://github.com/leonjza/trauth/tree/1.3.1).

## usage

Expand All @@ -19,7 +19,7 @@ experimental:
plugins:
trauth:
moduleName: github.com/leonjza/trauth
version: 2.0.0 # or whatever is the latest version
version: 1.4.0 # or whatever is the latest version
```
Or, add it as labels to your `docker-compose.yml` (or similar).
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:
- --providers.docker.exposedByDefault=false
- --entryPoints.web.address=:80
- --experimental.plugins.trauth.modulename=github.com/leonjza/trauth
- --experimental.plugins.trauth.version=v2.0.1
- --experimental.plugins.trauth.version=1.4.0
labels:
traefik.enable: true
traefik.http.routers.dashboard.entrypoints: web
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package trauth

const version = `2.0.0.`
const version = `1.4.0`

0 comments on commit 4fd1b5f

Please sign in to comment.