75 lines
2 KiB
Nix
75 lines
2 KiB
Nix
{ pkgs, config, ... }:
|
|
|
|
let
|
|
anonymous-overflow-pkg = pkgs.anonymous-overflow;
|
|
in
|
|
{
|
|
systemd.services.anonymous-overflow = {
|
|
description = "View StackOverflow in privacy and without the clutter";
|
|
wantedBy = [ "multi-user.target" ];
|
|
after = [ "network.target" ];
|
|
serviceConfig = {
|
|
DynamicUser = true;
|
|
StateDirectory = "anonymous-overflow";
|
|
EnvironmentFile = [ config.age.secrets.anonymous-overflow-config.path ];
|
|
WorkingDirectory = "${anonymous-overflow-pkg}/share/anonymous-overflow";
|
|
ExecStart = "${anonymous-overflow-pkg}/bin/anonymousoverflow";
|
|
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;
|
|
RestrictAddressFamilies = [ "AF_INET" "AF_INET6" ];
|
|
RestrictNamespaces = true;
|
|
RestrictRealtime = true;
|
|
RestrictSUIDSGID = true;
|
|
};
|
|
};
|
|
|
|
services.nginx = {
|
|
enable = true;
|
|
recommendedOptimisation = true;
|
|
recommendedGzipSettings = true;
|
|
recommendedBrotliSettings = true;
|
|
|
|
virtualHosts."anonymous-overflow.only.internal" = {
|
|
listen = [
|
|
{
|
|
addr = "127.0.0.1";
|
|
port = 80;
|
|
}
|
|
];
|
|
|
|
root = "${anonymous-overflow-pkg}/share/anonymous-overflow/public/";
|
|
forceSSL = false;
|
|
enableACME = false;
|
|
|
|
basicAuthFile = config.age.secrets.anonymous-overflow-auth.path;
|
|
|
|
locations."/" = {
|
|
tryFiles = "$uri @proxy";
|
|
};
|
|
|
|
locations."/static".extraConfig = ''
|
|
rewrite ^/static(/.*)$ $1 last;
|
|
'';
|
|
|
|
locations."@proxy" = {
|
|
recommendedProxySettings = true;
|
|
proxyPass = "http://127.0.0.1:8003";
|
|
};
|
|
};
|
|
};
|
|
}
|