GoToSocial: Difference between revisions
Appearance
Add setup instruction |
Add usage section |
||
| Line 15: | Line 15: | ||
}; | }; | ||
}; | }; | ||
</syntaxhighlight> | |||
== Usage == | |||
To create users, following utility and commands can be used.<syntaxhighlight lang="bash"> | |||
sudo gotosocial-admin account create --username <nickname> --email <email> --password <password> | |||
sudo gotosocial-admin account confirm --username <nickname> | |||
</syntaxhighlight>Promote a specific user to an administrator.<syntaxhighlight lang="bash"> | |||
sudo gotosocial-admin account promote --username <nickname> | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Revision as of 10:11, 3 August 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;
};
};
Usage
To create users, following utility and commands can be used.
sudo gotosocial-admin account create --username <nickname> --email <email> --password <password>
sudo gotosocial-admin account confirm --username <nickname>
Promote a specific user to an administrator.
sudo gotosocial-admin account promote --username <nickname>
See also
- Upstream documentation in the NixOS manual.