site update and some vpn shit
Some checks failed
/ lint (push) Failing after 43s

This commit is contained in:
Jana Dönszelmann 2026-01-06 02:28:43 +01:00
parent b0158e96c8
commit 8ebf4b74e6
No known key found for this signature in database
7 changed files with 73 additions and 74 deletions

View file

@ -1,4 +1,5 @@
_: {
{ config, ... }:
{
services.nginx = {
virtualHosts."jackett.donsz.nl" = {
forceSSL = true;
@ -6,11 +7,22 @@ _: {
enableACME = true;
locations."/" = {
proxyPass = "http://[::1]:9117";
proxyPass = "http://localhost:${toString config.services.jackett.port}";
};
};
};
# vpnNamespaces.mullvad.portMappings = [
# {
# from = config.services.jackett.port;
# to = config.services.jackett.port;
# }
# ];
# systemd.services.autobrr.vpnConfinement = {
# enable = true;
# vpnNamespace = "mullvad";
# };
services.oauth2-proxy.nginx.virtualHosts."jackett.donsz.nl" = {
allowed_groups = [ "torrent" ];
};
@ -19,5 +31,6 @@ _: {
enable = true;
group = "jellyfin";
user = "jellyfin";
port = 11013;
};
}