86 lines
2.4 KiB
Nix
86 lines
2.4 KiB
Nix
{ pkgs, config, ... }:
|
|
|
|
let
|
|
nitter-pkg = pkgs.nitter-unstable;
|
|
|
|
proxy-no-auth = {
|
|
recommendedProxySettings = true;
|
|
proxyPass = "http://127.0.0.1:8001";
|
|
};
|
|
in
|
|
{
|
|
# Based on: https://github.com/NixOS/nixpkgs/blob/nixos-unstable/nixos/modules/services/misc/nitter.nix
|
|
|
|
systemd.services.nitter = {
|
|
description = "Nitter (An alternative Twitter front-end)";
|
|
wantedBy = [ "multi-user.target" ];
|
|
after = [ "network.target" "network-online.target" ];
|
|
serviceConfig = {
|
|
DynamicUser = true;
|
|
StateDirectory = "nitter";
|
|
Environment = [ "NITTER_CONF_FILE=${config.age.secrets.nitter-config.path}" ];
|
|
# Some parts of Nitter expect `public` folder in working directory,
|
|
# see https://github.com/zedeus/nitter/issues/414
|
|
WorkingDirectory = "${nitter-pkg}/share/nitter";
|
|
ExecStart = "${nitter-pkg}/bin/nitter";
|
|
Restart = "on-failure";
|
|
RestartSec = "5s";
|
|
# Hardening
|
|
CapabilityBoundingSet = [ "" ];
|
|
DeviceAllow = [ "" ];
|
|
LockPersonality = true;
|
|
MemoryDenyWriteExecute = true;
|
|
PrivateDevices = true;
|
|
PrivateUsers = true;
|
|
ProcSubset = "pid";
|
|
ProtectClock = true;
|
|
ProtectControlGroups = true;
|
|
ProtectHome = true;
|
|
ProtectHostname = true;
|
|
ProtectKernelLogs = true;
|
|
ProtectKernelModules = true;
|
|
ProtectKernelTunables = true;
|
|
ProtectProc = "invisible";
|
|
RestrictAddressFamilies = [ "AF_INET" "AF_INET6" ];
|
|
RestrictNamespaces = true;
|
|
RestrictRealtime = true;
|
|
RestrictSUIDSGID = true;
|
|
SystemCallArchitectures = "native";
|
|
SystemCallFilter = [ "@system-service" "~@privileged" "~@resources" ];
|
|
UMask = "0077";
|
|
};
|
|
};
|
|
|
|
services.nginx = {
|
|
enable = true;
|
|
recommendedOptimisation = true;
|
|
recommendedGzipSettings = true;
|
|
recommendedBrotliSettings = true;
|
|
|
|
virtualHosts."nitter.only.internal" = {
|
|
listen = [
|
|
{
|
|
addr = "127.0.0.1";
|
|
port = 80;
|
|
}
|
|
];
|
|
|
|
root = "${nitter-pkg}/share/nitter/public/";
|
|
forceSSL = false;
|
|
enableACME = false;
|
|
|
|
locations."/" = {
|
|
tryFiles = "$uri @proxy";
|
|
};
|
|
|
|
locations."/pic/" = proxy-no-auth;
|
|
locations."/video/" = proxy-no-auth;
|
|
|
|
locations."@proxy" = {
|
|
basicAuthFile = config.age.secrets.nitter-auth.path;
|
|
recommendedProxySettings = true;
|
|
proxyPass = "http://127.0.0.1:8001";
|
|
};
|
|
};
|
|
};
|
|
}
|