This commit is contained in:
Elias Gasparis 2025-11-06 19:49:17 +08:00
commit c2c5e2c070
11 changed files with 135 additions and 113 deletions

View file

@ -1,15 +1,62 @@
{ config, pkgs, ... }:
{
# BASIC CONFIG
# user is root
environment.etc."nextcloud-admin-pass".text = "CHANGE_RIGHT_AWAY";
/*
services.nextcloud = {
enable = true;
package = pkgs.nextcloud31;
hostName = "nextcloud.knossos";
config.adminpassFile = "/var/lib/nextcloud-admin-pass";
config.dbtype = "sqlite";
hostName = "localhost";
config.adminpassFile = "/etc/nextcloud-admin-pass";
};
*/
services.nextcloud = {
enable = true;
configureRedis = true;
package = pkgs.nextcloud31;
hostName = "nextcloud.knossos";
# datadir = "/var/lib/nextcloud/";
settings = {
overwriteprotocol = "https";
trusted_proxies = [ "localhost" "127.0.0.1" "100.82.24.89" ];
trusted_domains = [ "nextcloud.knossos.arkadi.one" ];
};
config = {
dbtype = "pgsql";
dbuser = "nextcloud";
dbhost = "/run/postgresql"; # nextcloud will add /.s.PGSQL.5432 by itself
dbname = "nextcloud";
adminpassFile = "/etc/nextcloud-admin-pass";
adminuser = "admin";
};
};
services.postgresql = {
enable = true;
ensureDatabases = [ "nextcloud" ];
ensureUsers = [
{ name = "nextcloud";
ensureDBOwnership = true;
}
];
};
services.nginx.virtualHosts."nextcloud.knossos".listen = [ { addr = "127.0.0.1"; port = 8009; } ];
# ensure that postgres is running *before* running the setup
systemd.services."nextcloud-setup" = {
requires = ["postgresql.service"];
after = ["postgresql.service"];
};
# CALIBRE-WEB already disabled?
# services.nginx.enable = true;
# services.nginx.virtualHosts."nextcloud.knossos" ={
# listen = [ { addr = "127.0.0.1"; port = 8009; } ];
# forceSSL = false;
# };
}