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"];
service = "hugo";
tls.domains = [{main = "*.notohh.dev";}];
tls.certresolver = "staging";
tls.certresolver = "production";
};
foundryvtt = {
rule = "Host(`foundry.notohh.dev`)";
entrypoints = ["websecure"];
service = "foundryvtt";
tls.domains = [{main = "*.notohh.dev";}];
tls.certresolver = "staging";
tls.certresolver = "production";
};
gitea = {
rule = "Host(`git.notohh.dev`)";
entrypoints = ["websecure"];
service = "gitea";
tls.domains = [{main = "*.notohh.dev";}];
tls.certresolver = "staging";
tls.certresolver = "production";
};
};
};
};
staticConfigOptions = {
log.level = "DEBUG";
api.dashboard = true;
api.insecure = true;
api.dashboard = false;
api.insecure = false;
global = {
checkNewVersion = false;
sendAnonymousUsage = false;