2023-08-13 17:00:41 +01:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
inputs,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}: let
|
2023-07-07 07:00:12 +01:00
|
|
|
newestPackages = inputs.nixpkgs-master.legacyPackages.${pkgs.system};
|
|
|
|
package = newestPackages.mastodon;
|
2022-11-26 11:10:35 +00:00
|
|
|
domain = "peninsula.industries";
|
|
|
|
webPort = 55001;
|
2023-11-30 18:04:51 +00:00
|
|
|
postgresPort = 5432;
|
2022-11-26 11:10:35 +00:00
|
|
|
path = "/var/lib/mastodon/";
|
2023-11-30 18:04:51 +00:00
|
|
|
mailgunSmtpSecretName = "mastodon-mailgun-smtp-password";
|
|
|
|
mailgunSmtpPasswordPath = "/run/secrets/${mailgunSmtpSecretName}";
|
|
|
|
mastodonDbSecretName = "mastodon-db";
|
|
|
|
mastodonDbSecretPath = "/run/secrets/${mastodonDbSecretName}";
|
|
|
|
uid = 2049;
|
|
|
|
gid = 3049;
|
|
|
|
systemUserName = "mastodon";
|
|
|
|
systemGroupName = "mastodon";
|
|
|
|
users = {
|
|
|
|
users."${systemUserName}" = {
|
|
|
|
inherit uid;
|
|
|
|
isSystemUser = true;
|
|
|
|
isNormalUser = false;
|
|
|
|
group = systemGroupName;
|
|
|
|
};
|
|
|
|
groups."${systemGroupName}" = {
|
|
|
|
inherit gid;
|
|
|
|
members = ["${systemUserName}" "nginx"];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
secretSettings = {
|
|
|
|
owner = systemUserName;
|
|
|
|
group = systemGroupName;
|
|
|
|
};
|
2022-11-26 21:54:48 +00:00
|
|
|
publicPath = "${path}/public-system/";
|
2022-11-26 11:10:35 +00:00
|
|
|
in {
|
2023-08-13 17:00:41 +01:00
|
|
|
imports = [../nginx.nix];
|
2022-11-26 11:10:35 +00:00
|
|
|
|
|
|
|
services.nginx = {
|
|
|
|
virtualHosts = {
|
|
|
|
"${domain}" = {
|
|
|
|
forceSSL = true;
|
|
|
|
enableACME = true;
|
2022-11-26 21:13:04 +00:00
|
|
|
root = "${package}/public/";
|
2022-11-26 11:10:35 +00:00
|
|
|
|
2023-08-13 17:00:41 +01:00
|
|
|
locations."/" = {tryFiles = "$uri @proxy";};
|
2022-11-26 21:54:48 +00:00
|
|
|
locations."/system/".alias = "${publicPath}";
|
2022-11-26 11:10:35 +00:00
|
|
|
|
|
|
|
locations."@proxy" = {
|
2022-11-26 21:13:04 +00:00
|
|
|
proxyPass = "http://127.0.0.1:" + toString webPort;
|
2022-11-26 11:10:35 +00:00
|
|
|
proxyWebsockets = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2023-11-30 18:04:51 +00:00
|
|
|
|
|
|
|
sops.secrets."${mailgunSmtpSecretName}" =
|
|
|
|
{
|
|
|
|
sopsFile = ./mailgun.sops.yaml;
|
|
|
|
path = mailgunSmtpPasswordPath;
|
|
|
|
}
|
|
|
|
// secretSettings;
|
|
|
|
sops.secrets."${mastodonDbSecretName}" =
|
|
|
|
{
|
|
|
|
sopsFile = ./mastodon-db.sops.yaml;
|
|
|
|
path = mastodonDbSecretPath;
|
|
|
|
}
|
|
|
|
// secretSettings;
|
|
|
|
|
|
|
|
inherit users;
|
|
|
|
|
|
|
|
systemd.services.mastodon-make-path = {
|
|
|
|
script = ''
|
|
|
|
mkdir -p ${path}
|
|
|
|
chown -R ${systemUserName}:${systemGroupName} ${path}
|
|
|
|
mkdir -p ${publicPath}
|
|
|
|
chmod -R o-rwx ${publicPath}
|
|
|
|
chmod -R g-rwx ${publicPath}
|
|
|
|
chmod -R g+X ${publicPath}
|
|
|
|
chmod -R g+r ${publicPath}
|
|
|
|
chmod -R u+rwX ${publicPath}
|
|
|
|
'';
|
|
|
|
serviceConfig = {Type = "oneshot";};
|
|
|
|
before = ["container@mastodon.service"];
|
|
|
|
};
|
|
|
|
|
|
|
|
containers.mastodon = {
|
|
|
|
autoStart = true;
|
|
|
|
forwardPorts = [
|
|
|
|
{
|
|
|
|
containerPort = webPort;
|
|
|
|
hostPort = webPort;
|
|
|
|
}
|
|
|
|
];
|
|
|
|
bindMounts = {
|
|
|
|
"${path}" = {
|
|
|
|
hostPath = "${path}";
|
|
|
|
isReadOnly = false;
|
|
|
|
};
|
|
|
|
"${mailgunSmtpPasswordPath}" = {
|
|
|
|
hostPath = "${mailgunSmtpPasswordPath}";
|
|
|
|
isReadOnly = true;
|
|
|
|
};
|
|
|
|
"${mastodonDbSecretPath}" = {
|
|
|
|
hostPath = "${mastodonDbSecretPath}";
|
|
|
|
isReadOnly = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
config = {
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}: {
|
2023-12-18 10:28:15 +00:00
|
|
|
system.stateVersion = "23.11";
|
2023-11-30 18:04:51 +00:00
|
|
|
services.postgresql.port = postgresPort;
|
|
|
|
users =
|
|
|
|
users
|
|
|
|
// {
|
|
|
|
mutableUsers = false;
|
|
|
|
allowNoPasswordLogin = true;
|
|
|
|
};
|
|
|
|
systemd.services.mastodon-media-auto-remove = {
|
|
|
|
description = "Mastodon media auto remove";
|
|
|
|
serviceConfig = {
|
|
|
|
Type = "oneshot";
|
|
|
|
EnvironmentFile = "/var/lib/mastodon/.secrets_env";
|
|
|
|
};
|
|
|
|
script = ''
|
|
|
|
/run/current-system/sw/bin/mastodon-tootctl media remove --days=8 --prune-profiles --include-follows -c1
|
|
|
|
/run/current-system/sw/bin/mastodon-tootctl media remove --days=8 --remove-headers --include-follows -c1
|
|
|
|
/run/current-system/sw/bin/mastodon-tootctl preview_cards remove --days=8
|
|
|
|
'';
|
|
|
|
startAt = "daily";
|
|
|
|
};
|
|
|
|
services.mastodon = {
|
|
|
|
enable = true;
|
|
|
|
inherit package;
|
|
|
|
localDomain = "${domain}";
|
|
|
|
user = systemUserName;
|
|
|
|
group = systemGroupName;
|
|
|
|
mediaAutoRemove.enable = false;
|
2023-11-30 21:22:10 +00:00
|
|
|
streamingProcesses = 2;
|
2023-11-30 18:04:51 +00:00
|
|
|
smtp = {
|
|
|
|
host = "smtp.eu.mailgun.org";
|
|
|
|
port = 465;
|
|
|
|
authenticate = true;
|
|
|
|
user = "postmaster@${domain}";
|
|
|
|
fromAddress = "Peninsula Industries Mastodon <mastodon@${domain}>";
|
|
|
|
createLocally = false;
|
|
|
|
passwordFile = "${mailgunSmtpPasswordPath}";
|
|
|
|
};
|
2023-12-09 09:18:29 +00:00
|
|
|
sidekiqThreads = 2;
|
2023-11-30 18:04:51 +00:00
|
|
|
extraConfig = {
|
|
|
|
SMTP_TLS = "true";
|
|
|
|
SMTP_ENABLE_STARTTLS_AUTO = "true";
|
|
|
|
SINGLE_USER_MODE = "true";
|
|
|
|
RAILS_SERVE_STATIC_FILES = "true";
|
|
|
|
AUTHORIZED_FETCH = "true";
|
|
|
|
DISALLOW_UNAUTHENTICATED_API_ACCESS = "true";
|
|
|
|
};
|
|
|
|
inherit webPort;
|
|
|
|
configureNginx = false;
|
|
|
|
enableUnixSocket = false;
|
|
|
|
database = {
|
|
|
|
port = postgresPort;
|
|
|
|
passwordFile = mastodonDbSecretPath;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2022-11-26 11:10:35 +00:00
|
|
|
}
|