added target to nextcloud proxy

This commit is contained in:
Leyla Becker 2025-01-11 15:06:50 -06:00
parent e7a53a5df0
commit f55abeb587

View file

@ -25,7 +25,11 @@ in {
}; };
}; };
host.reverse_proxy.subdomains.${config.host.jellyfin.subdomain} = {}; host = {
reverse_proxy.subdomains.${config.host.nextcloud.subdomain} = {
target = "http://localhost:${toString 8009}";
};
};
services = { services = {
nextcloud = { nextcloud = {
@ -35,6 +39,7 @@ in {
settings.log_type = "file"; settings.log_type = "file";
config = { config = {
adminpassFile = config.sops.secrets."services/nextcloud_adminpass".path; adminpassFile = config.sops.secrets."services/nextcloud_adminpass".path;
adminuser = "admin";
}; };
}; };
}; };