traefik: disable api, switch certresolvers
This commit is contained in:
parent
aa8fc0140e
commit
312ec26fc5
1 changed files with 5 additions and 5 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue