2024-12-19 22:37:17 -06:00
|
|
|
{flake, ...}: let
|
2024-12-08 22:53:40 -06:00
|
|
|
inherit (flake.config.services.instances) upRootNutrition web;
|
|
|
|
service = upRootNutrition;
|
|
|
|
localhost = web.localhost.address0;
|
|
|
|
host = web.domains.url3;
|
|
|
|
in {
|
|
|
|
services = {
|
|
|
|
caddy = {
|
|
|
|
virtualHosts = {
|
|
|
|
"${host}" = {
|
|
|
|
extraConfig = ''
|
2024-12-19 22:37:17 -06:00
|
|
|
redir /.well-known/carddav /remote.php/dav/ 301
|
|
|
|
redir /.well-known/caldav /remote.php/dav/ 301
|
2024-12-08 22:53:40 -06:00
|
|
|
|
2024-12-19 22:37:17 -06:00
|
|
|
reverse_proxy ${localhost}:${toString service.ports.port0}
|
2024-12-08 22:53:40 -06:00
|
|
|
|
2024-12-19 22:37:17 -06:00
|
|
|
tls ${service.ssl.cert} ${service.ssl.key}
|
2024-12-08 22:53:40 -06:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|