Jump to content

GoToSocial: Difference between revisions

From Official NixOS Wiki
Klinger (talk | contribs)
first version with link to NixOS manual
 
Onny (talk | contribs)
Add setup instruction
 
(One intermediate revision by one other user not shown)
Line 2: Line 2:
[https://gotosocial.org/ GoToSocial] is an ActivityPub social network server.  
[https://gotosocial.org/ GoToSocial] is an ActivityPub social network server.  


It is documented in the [https://nixos.org/manual/nixos/stable/#module-services-gotosocial NixOS manual].
== Setup ==
Minimal configuration example.<syntaxhighlight lang="nix">
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;
  };
};
</syntaxhighlight>


== See also ==


* Upstream documentation in the [https://nixos.org/manual/nixos/stable/#module-services-gotosocial NixOS manual].
[[Category:ActivityPub]]
[[Category:Web Applications]]
[[Category:Web Applications]]
[[Category:Server]]
[[Category:Server]]
[[Category:NixOS Manual]]
[[Category:NixOS Manual]]

Latest revision as of 09:35, 12 July 2026

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