nixfiles/hosts/hetzner-vm/containers/social/profiles/gotosocial.nix

40 lines
984 B
Nix

{...}: {
services.gotosocial = {
enable = true;
setupPostgresqlDB = true;
settings = {
application-name = "chaos-gts";
host = "gts-01.owo.monster";
bind-address = "0.0.0.0";
log-level = "info";
log-client-ip = false;
port = 8080;
letsencrypt-enabled = false;
accounts-registration-open = false;
media-remote-cache-days = 2;
media-image-max-size = 1000000 * 64; # MB
media-video-max-size = 1000000 * 1024; # MB
media-description-max-chars = 4000;
media-emoji-local-max-size = 102400;
media-emoji-remote-max-size = 102400;
statuses-cw-max-chars = 150;
statuses-poll-max-options = 10;
statuses-media-max-files = 8;
# only enable when testing out mastodon-api applications
# that use instance version for api compatibility checks
# instance-inject-mastodon-version = true;
cache = {
memory-target = "256MiB";
};
};
};
}