caddy: use internal acme(its easier lol)

This commit is contained in:
Mr Hedgehog 2022-07-01 12:44:30 -04:00
parent 645cc3a613
commit f1c59d19fe
No known key found for this signature in database

View file

@ -14,47 +14,42 @@
acmeCA = "https://ca.thehedgehog.internal:8420/acme/acme/directory";
virtualHosts = {
"reddit.thehedgehog.internal" = {
serverAliases = [ "reddit" ];
extraConfig = ''
reverse_proxy http://localhost:4000
'';
};
"adguard.thehedgehog.internal" = {
serverAliases = [ "adguard" "dns" ];
extraConfig = ''
reverse_proxy http://localhost:2500
'';
};
"rss.thehedgehog.internal" = {
serverAliases = [ "rss" "miniflux" ];
extraConfig = ''
reverse_proxy http://localhost:6000
'';
};
"jellyfin.thehedgehog.internal" = {
serverAliases = [ "jellyfin" "media" ];
extraConfig = ''
reverse_proxy http://localhost:8096
'';
};
"hydra.thehedgehog.internal" = {
serverAliases = [ "hydra" "ci" ];
extraConfig = ''
reverse_proxy http://localhost:3000
'';
};
"dav.thehedgehog.internal" = {
serverAliases = [ "dav" "radicale" ];
extraConfig = ''
reverse_proxy http://localhost:5352
'';
};
"rss-bridge.thehedgehog.internal" = {
serverAliases = [ "rssbridge" "rss-bridge" ];
extraConfig = ''
reverse_proxy http://localhost:80
'';
};
};
extraConfig = ''
'';
};
}