change gts back to local storage
This commit is contained in:
parent
6db3140bf4
commit
353522d5ee
2 changed files with 4 additions and 7 deletions
|
@ -5,6 +5,8 @@
|
|||
./website.nix
|
||||
];
|
||||
fileSystems."/" = { device = "/dev/sda1"; fsType = "ext4"; };
|
||||
fileSystems."/mnt/gts" = { device = "/dev/sdb1"; fsType = "ext4"; };
|
||||
services.restic.backups.default.paths = ["/mnt/gts"];
|
||||
cherrykitten.backups.enable = true;
|
||||
cherrykitten.network = {
|
||||
public_IPv4 = "128.140.109.125";
|
||||
|
|
|
@ -5,15 +5,9 @@ let
|
|||
port = 8553;
|
||||
in
|
||||
{
|
||||
deployment.keys."gts_env" = {
|
||||
destDir = "/root/keys/";
|
||||
keyCommand = [ "pass" "hosts/ocelot/gts/env" ];
|
||||
user = "gotosocial";
|
||||
};
|
||||
services.gotosocial = {
|
||||
enable = true;
|
||||
setupPostgresqlDB = true;
|
||||
environmentFile = "/root/keys/gts_env";
|
||||
settings = {
|
||||
inherit bind-address host port;
|
||||
application-name = "CherryKitten";
|
||||
|
@ -36,7 +30,8 @@ in
|
|||
statuses-poll-option-max-chars = 150;
|
||||
statuses-media-max-files = 16;
|
||||
|
||||
storage-backend = "s3";
|
||||
storage-backend = "local";
|
||||
storage-local-base-path = "/mnt/gts";
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue