traefik: disable api, switch certresolvers

This commit is contained in:
notohh 2023-05-15 04:40:44 -04:00
parent aa8fc0140e
commit 312ec26fc5
Signed by: notohh
GPG key ID: BD47506D475EE86D

View file

@ -48,29 +48,29 @@
entryPoints = ["websecure"]; entryPoints = ["websecure"];
service = "hugo"; service = "hugo";
tls.domains = [{main = "*.notohh.dev";}]; tls.domains = [{main = "*.notohh.dev";}];
tls.certresolver = "staging"; tls.certresolver = "production";
}; };
foundryvtt = { foundryvtt = {
rule = "Host(`foundry.notohh.dev`)"; rule = "Host(`foundry.notohh.dev`)";
entrypoints = ["websecure"]; entrypoints = ["websecure"];
service = "foundryvtt"; service = "foundryvtt";
tls.domains = [{main = "*.notohh.dev";}]; tls.domains = [{main = "*.notohh.dev";}];
tls.certresolver = "staging"; tls.certresolver = "production";
}; };
gitea = { gitea = {
rule = "Host(`git.notohh.dev`)"; rule = "Host(`git.notohh.dev`)";
entrypoints = ["websecure"]; entrypoints = ["websecure"];
service = "gitea"; service = "gitea";
tls.domains = [{main = "*.notohh.dev";}]; tls.domains = [{main = "*.notohh.dev";}];
tls.certresolver = "staging"; tls.certresolver = "production";
}; };
}; };
}; };
}; };
staticConfigOptions = { staticConfigOptions = {
log.level = "DEBUG"; log.level = "DEBUG";
api.dashboard = true; api.dashboard = false;
api.insecure = true; api.insecure = false;
global = { global = {
checkNewVersion = false; checkNewVersion = false;
sendAnonymousUsage = false; sendAnonymousUsage = false;