traefik: add pqdn redirect
This commit is contained in:
parent
dc0a21b9c4
commit
eb91f08503
1 changed files with 19 additions and 2 deletions
|
@ -32,9 +32,18 @@
|
|||
trustForwardHeader = true;
|
||||
};
|
||||
};
|
||||
redirect-flake-sh = {
|
||||
redirectregex = {
|
||||
regex = "^https?://flake\\.sh/(.*)";
|
||||
replacement = "https://notohh.dev/";
|
||||
permanent = false;
|
||||
};
|
||||
};
|
||||
redirect-to-https = {
|
||||
redirectscheme.scheme = "https";
|
||||
redirectscheme.permanent = true;
|
||||
redirectscheme = {
|
||||
scheme = "https";
|
||||
permanent = true;
|
||||
};
|
||||
};
|
||||
cors = {
|
||||
headers = {
|
||||
|
@ -62,6 +71,14 @@
|
|||
tls.domains = [{main = "*.notohh.dev";}];
|
||||
tls.certresolver = "production";
|
||||
};
|
||||
flake-sh = {
|
||||
rule = "Host(`${pqdn}`)";
|
||||
entrypoints = ["websecure"];
|
||||
service = "noop@internal";
|
||||
middlewares = "redirect-flake-sh";
|
||||
tls.domains = [{main = "*.${pqdn}";}];
|
||||
tls.certresolver = "production";
|
||||
};
|
||||
uptime-kuma = {
|
||||
rule = "Host(`status.${pqdn}`)";
|
||||
entrypoints = ["websecure"];
|
||||
|
|
Loading…
Reference in a new issue