HermitCollective.nix/services/iceshrimp.nix

34 lines
1021 B
Nix
Raw Normal View History

2024-03-07 08:33:59 +00:00
{ inputs, ... }:
2024-03-06 09:25:15 +00:00
{
2024-03-06 10:08:26 +00:00
services = {
iceshrimp = {
enable = true; # Actually enable the module
2024-03-06 12:38:10 +00:00
createDb = true;
configureNginx.enable = false;
2024-03-06 10:08:26 +00:00
stateDir = "/var/lib/iceshrimp";
mediaDir = "/var/lib/iceshrimp/files";
settings = {
url = "https://mastodon.hermitcollective.net";
maxNoteLength = 35124; # Length of the GPL3 + long;
maxCaptionLength = 5000; # We did it HermitCollective!! We solved accesibility!
2024-03-06 10:13:13 +00:00
};
2024-03-06 09:25:15 +00:00
};
nginx.virtualHosts."mastodon.hermitcollective.net" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://localhost:3000";
proxyWebsockets = true; # needed if you need to use WebSocket
extraConfig =
# required when the target is also TLS server with multiple hosts
"proxy_ssl_server_name on;" +
# required when the server wants to use HTTP Authentication
"proxy_pass_header Authorization;"
;
};
};
2024-03-06 09:25:15 +00:00
};
}