Skip to content

Commit ed05d1e

Browse files
committed
* Several updates 2024_01_30. See full commit log.
* Remove HTTPS redirect scheme middleware. Not used and redirects handled globally with CLI commands. * Changed entrypoint names from http/https to web/websecure to align with several online documentation. * Updated readme. * Changed basic auth secret from htpassd to basic_auth_credentials (just easier to understand)
1 parent 546bf74 commit ed05d1e

File tree

91 files changed

+484
-520
lines changed

Some content is hidden

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

91 files changed

+484
-520
lines changed

README.md

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

appdata/traefik2/rules/ds918/chain-basic-auth.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ http:
44
chain:
55
middlewares:
66
- middlewares-rate-limit
7-
- middlewares-https-redirectscheme
87
- middlewares-secure-headers
98
- middlewares-basic-auth
109
- middlewares-compress

appdata/traefik2/rules/ds918/chain-no-auth.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,5 @@ http:
44
chain:
55
middlewares:
66
- middlewares-rate-limit
7-
- middlewares-https-redirectscheme
87
- middlewares-secure-headers
98
- middlewares-compress

appdata/traefik2/rules/ds918/chain-oauth-external.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ http:
44
chain:
55
middlewares:
66
- middlewares-rate-limit
7-
- middlewares-https-redirectscheme
87
- middlewares-secure-headers
98
- middlewares-oauth-external
109
- middlewares-compress

appdata/traefik2/rules/ds918/chain-oauth.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ http:
44
chain:
55
middlewares:
66
- middlewares-rate-limit
7-
- middlewares-https-redirectscheme
87
- middlewares-secure-headers
98
- middlewares-oauth
109
- middlewares-compress

appdata/traefik2/rules/ds918/middlewares-basic-auth.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ http:
44
basicAuth:
55
# users:
66
# - "user:$apsdfswWvC/6.$E3FtsfTntPC0wVJ7IUVtX1"
7-
usersFile: "/run/secrets/htpasswd" #be sure to mount the volume through docker-compose.yml
7+
usersFile: "/run/secrets/basic_auth_credentials"
88
realm: "Traefik 2 Basic Auth"

appdata/traefik2/rules/ds918/middlewares-https-redirectscheme.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

appdata/traefik2/rules/hs/app-adguard-home-authelia.yml.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ http:
33
adguard-rtr:
44
rule: "Host(`ag.{{env "DOMAINNAME_HS"}}`)"
55
entryPoints:
6-
- https
6+
- websecure
77
middlewares:
88
- chain-authelia
99
service: adguard-svc

appdata/traefik2/rules/hs/app-adguard-home-oauth.yml.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ http:
33
adguard-rtr:
44
rule: "Host(`ag.{{env "DOMAINNAME_HS"}}`)"
55
entryPoints:
6-
- https
6+
- websecure
77
middlewares:
88
- chain-oauth
99
service: adguard-svc

appdata/traefik2/rules/hs/app-haos-no-auth.yml.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ http:
33
haos-rtr:
44
rule: "Host(`haos.{{env "DOMAINNAME_HS"}}`)"
55
entryPoints:
6-
- https
6+
- websecure
77
middlewares:
88
- chain-no-auth
99
service: haos-svc

0 commit comments

Comments
 (0)