1
0
Fork 0
dotfiles/system/nixos/mastodon.nix

103 lines
2.4 KiB
Nix
Raw Normal View History

2022-11-29 14:51:54 +00:00
{ config, secret, ... }:
2022-11-29 14:17:23 +00:00
2022-11-29 14:51:54 +00:00
let
web-domain = "mastodon.kempkens.io";
2022-11-29 15:51:16 +00:00
2022-11-29 15:52:49 +00:00
nginx-extra-proxy-settings = ''
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $http_x_forwarded_proto;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
'';
2022-11-29 14:51:54 +00:00
in
2022-11-29 14:17:23 +00:00
{
services.mastodon = {
enable = true;
configureNginx = false;
localDomain = "kempkens.io";
streamingPort = 55000;
webPort = 55001;
sidekiqPort = 55002;
2022-11-29 15:03:39 +00:00
enableUnixSocket = false;
2022-11-29 14:17:23 +00:00
2022-11-29 14:54:13 +00:00
trustedProxy = "127.0.0.1";
2022-11-29 14:17:23 +00:00
vapidPublicKeyFile = "/var/lib/mastodon/secrets/vapid-public-key";
secretKeyBaseFile = "/var/lib/mastodon/secrets/secret-key-base";
otpSecretFile = "/var/lib/mastodon/secrets/otp-secret";
vapidPrivateKeyFile = "/var/lib/mastodon/secrets/vapid-private-key";
database = {
createLocally = false;
host = "10.99.99.3";
port = 5432;
name = "mastodon";
inherit (secret.mastodon.database) user;
inherit (secret.mastodon.database) passwordFile;
};
redis = {
createLocally = false;
host = "10.99.99.3";
port = 6379;
};
elasticsearch.host = null;
smtp = {
createLocally = false;
authenticate = true;
host = "smtp.mailgun.org";
port = 465;
fromAddress = "mastodon@mg.kempkens.io";
inherit (secret.mastodon.smtp) user;
inherit (secret.mastodon.smtp) passwordFile;
};
automaticMigrations = true;
mediaAutoRemove = {
enable = true;
startAt = "daily";
olderThanDays = 21;
};
extraConfig = {
2022-11-29 14:51:54 +00:00
WEB_DOMAIN = web-domain;
};
};
services.nginx = {
enable = true;
virtualHosts."${web-domain}" = {
root = "${config.services.mastodon.package}/public/";
forceSSL = false;
enableACME = false;
locations."/system/".alias = "/var/lib/mastodon/public-system/";
locations."/" = {
tryFiles = "$uri @proxy";
};
locations."@proxy" = {
2022-11-29 15:03:39 +00:00
proxyPass = "http://127.0.0.1:55001";
2022-11-29 14:51:54 +00:00
proxyWebsockets = true;
2022-11-29 15:51:16 +00:00
extraConfig = nginx-extra-proxy-settings;
2022-11-29 14:51:54 +00:00
};
locations."/api/v1/streaming/" = {
2022-11-29 15:03:39 +00:00
proxyPass = "http://127.0.0.1:55000";
2022-11-29 14:51:54 +00:00
proxyWebsockets = true;
2022-11-29 15:51:16 +00:00
extraConfig = nginx-extra-proxy-settings;
2022-11-29 14:51:54 +00:00
};
2022-11-29 14:17:23 +00:00
};
};
2022-11-29 14:58:30 +00:00
networking.firewall.allowedTCPPorts = [ 80 ];
2022-11-29 14:17:23 +00:00
}