mirror of
https://github.com/Gaelan/minifedi
synced 2024-11-10 06:14:17 +00:00
28 lines
518 B
Nix
28 lines
518 B
Nix
{ types }:
|
|
|
|
{
|
|
instances = [
|
|
{
|
|
name = "mastodon";
|
|
type = types.mastodon;
|
|
version = ./versions/mastodon/mastodon-4.1.4;
|
|
}
|
|
{
|
|
name = "glitch";
|
|
type = types.mastodon;
|
|
version = ./versions/mastodon/glitch-a004718;
|
|
}
|
|
{
|
|
name = "akkoma";
|
|
type = types.akkoma;
|
|
}
|
|
{
|
|
name = "gotosocial";
|
|
type = types.gotosocial;
|
|
}
|
|
];
|
|
|
|
# Enable logging of all requests between instances. Requires ports 8080 and
|
|
# 8081 open.
|
|
mitmproxy = false;
|
|
}
|