diff --git a/README.md b/README.md index 40ce0ea..a04a107 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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). diff --git a/docker-compose.yml b/docker-compose.yml index 63bbf5c..c386ee3 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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 diff --git a/version.go b/version.go index b01cb3a..4c70834 100644 --- a/version.go +++ b/version.go @@ -1,3 +1,3 @@ package trauth -const version = `2.0.0.` +const version = `1.4.0`