forked from SimpleHomelab/docker-traefik
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Several updates 2022_07_14. See full commit log.
* Updated bash_aliases for Synology DSM 7, which uses SYSTEMD * changed traefik_forward_auth secrets example to align with 2022 Traefik forward Auth guide: https://www.smarthomebeginner.com/traefik-forward-auth-google-oauth-2022/ * After update to DSM 7.1 switch_ports scripts for 80 and 443 did not work (switch_ports.sh.example). Had to add a command to restart nginx. * Modified examples of traefik rules YML for non-docker apps. * Fixed: Wrong port was specified for qbittorrent behind traefik. Changed it to 8080. * Changed lidarr volumes to align with TRaSH guide. * Edited README. docker-compose-t2.yml * Moved my Plex that was running by iteself on a separate docker host on my home network to cloud server. * Typos and comments docker-compose-t2-synology.yml * Installed Adguard Home on Synology to replace my Pi-Hole on Raspberry Pi. This required adding a separate macvlan docker network (dockervlan). * Added Dashy for testing - potential replacement for heimdall. * Added back Traefik cert dumper to use the certs with AdGuard Home for DoH/DoT. * Replaced cf-ddns from oznu by qmcgaw/ddns-updater, which has a few nice features: discord notification (via shoutrrr), webUI for logs, etc.
- Loading branch information
1 parent
f350de2
commit 7442900
Showing
12 changed files
with
207 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
appdata/traefik2/rules/cloudserver/app-adguard-home-authelia.yml.example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
http: | ||
routers: | ||
adguard-rtr: | ||
rule: "Host(`ag.{{env "DOMAINNAME_CLOUD_SERVER"}}`)" | ||
entryPoints: | ||
- https | ||
middlewares: | ||
- chain-oauth | ||
service: adguard-svc | ||
tls: | ||
certResolver: dns-cloudflare | ||
options: tls-opts@file | ||
services: | ||
adguard-svc: | ||
loadBalancer: | ||
servers: | ||
- url: "http://ADGUARD-CLOUD-SERVER-IP:80" | ||
|
18 changes: 18 additions & 0 deletions
18
appdata/traefik2/rules/cloudserver/app-adguard-home-oauth.yml.example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
http: | ||
routers: | ||
adguard-rtr: | ||
rule: "Host(`ag.{{env "DOMAINNAME_CLOUD_SERVER"}}`)" | ||
entryPoints: | ||
- https | ||
middlewares: | ||
- chain-oauth | ||
service: adguard-svc | ||
tls: | ||
certResolver: dns-cloudflare | ||
options: tls-opts@file | ||
services: | ||
adguard-svc: | ||
loadBalancer: | ||
servers: | ||
- url: "http://ADGUARD-CLOUD-SERVER-IP:80" | ||
|
8 changes: 4 additions & 4 deletions
8
.../rules/cloudserver/app-hassio.yml.example → ...loudserver/app-hassos-no-auth.yml.example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
http: | ||
routers: | ||
hass-core-rtr: | ||
rule: "Host(`hass.{{env "DOMAINNAME_CLOUD_SERVER"}}`)" | ||
hassos-rtr: | ||
rule: "Host(`hassos.{{env "DOMAINNAME_CLOUD_SERVER"}}`)" | ||
entryPoints: | ||
- https | ||
middlewares: | ||
- chain-no-auth | ||
service: hass-core-svc | ||
service: hassos-svc | ||
tls: | ||
certResolver: dns-cloudflare | ||
services: | ||
hass-core-svc: | ||
hassos-svc: | ||
loadBalancer: | ||
servers: | ||
- url: "http://192.168.5.90:8123" # or whatever your external host's IP:port is |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters