1
0
Fork 0
dotfiles/system/nixos/anonymous-overflow.nix

65 lines
1.8 KiB
Nix
Raw Normal View History

2023-02-15 19:35:46 +00:00
{ 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";
2023-02-15 19:35:46 +00:00
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;
2023-02-15 19:35:46 +00:00
};
};
services.nginx = {
2023-03-06 08:55:28 +00:00
virtualHosts."overflow.daniel.sx" = {
2023-03-06 09:21:34 +00:00
http3 = true;
root = "${anonymous-overflow-pkg}/share/anonymous-overflow/public/";
2023-03-06 08:55:28 +00:00
forceSSL = true;
useACMEHost = "daniel.sx";
basicAuthFile = config.age.secrets.anonymous-overflow-auth.path;
2023-02-15 19:35:46 +00:00
locations."/" = {
tryFiles = "$uri @proxy";
};
locations."/static".extraConfig = ''
rewrite ^/static(/.*)$ $1 last;
'';
locations."@proxy" = {
2023-02-15 19:35:46 +00:00
recommendedProxySettings = true;
proxyPass = "http://127.0.0.1:8003";
};
};
};
}