nixin-web/components/nix-code/nextcloud.vue

17 lines
348 B
Vue
Raw Permalink Normal View History

<template>
2024-10-15 08:45:44 +00:00
<pre>
services.nextcloud = {
enable = true;
hostName = "nextcloud.tld";
database.createLocally = true;
config = {
dbtype = "pgsql";
adminpassFile = "/path/to/admin-pass-file";
};
};
networking.firewall.allowedTCPPorts = [ 80 443 ];
2024-10-15 08:45:44 +00:00
</pre>
</template>