Jump to content

GoToSocial

From Official NixOS Wiki

GoToSocial is an ActivityPub social network server.

Setup

Minimal configuration example.

services.gotosocial = {
  enable = true;
  setupPostgresqlDB = true;
  settings = {
    application-name = "My GoToSocial";
    host = "gotosocial.example.com";
    protocol = "https";
    bind-address = "127.0.0.1";
    port = 8080;
  };
};

See also