mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-06-07 18:18:45 +02:00
Compare commits
4 commits
8492679843
...
3dde751ddd
Author | SHA1 | Date | |
---|---|---|---|
3dde751ddd | |||
7fe28374b8 | |||
7656a942c0 | |||
e3e21f7352 |
8 changed files with 47 additions and 15 deletions
6
flake.lock
generated
6
flake.lock
generated
|
@ -299,11 +299,11 @@
|
|||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1747021744,
|
||||
"narHash": "sha256-IDsM/9/tHQBlhG3tXI2fTM84AUN1uRa7JDPT1LMlGes=",
|
||||
"lastModified": 1747184352,
|
||||
"narHash": "sha256-GBZulv50wztp5cgc405t1uOkxQYhSkMqeKLI+iSrlpk=",
|
||||
"owner": "nix-community",
|
||||
"repo": "home-manager",
|
||||
"rev": "fb061f555f821fe4fb49f8f6f2a0cc3d5728bd52",
|
||||
"rev": "7c1cefb98369cc85440642fdccc1c1394ca6dd2c",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
@ -42,14 +42,6 @@ let
|
|||
|
||||
|
||||
subdomains =
|
||||
let
|
||||
# generate ACME challenge recorsd for every VirtualHost
|
||||
genACMECNAMEs = hostname: lib.attrsets.genAttrs (getVirtualHosts hostname) (_label: {
|
||||
subdomains._acme-challenge.CNAME = [ "challenge.acme.${domain}." ];
|
||||
});
|
||||
# fuckery to merge the generated attribute lists
|
||||
mergeRecords = recordList: lib.attrsets.mapAttrs (_host: records: lib.attrsets.mergeAttrsList records) (lib.attrsets.zipAttrs recordList);
|
||||
in
|
||||
lib.attrsets.mergeAttrsList [
|
||||
rec {
|
||||
nuc = {
|
||||
|
@ -68,7 +60,7 @@ let
|
|||
_domainkey.subdomains.rspamd.TXT = [ "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDoirUMubro4nlmY6a8JMwK9QB2agAXiJzexDU/7ba6KCggONfoSTfUHlrM/XeM1GG/9oKpngApxDPP97adJuxc8/EELyo4HjTyYD8GBFZhg0AN7V8IPaJ1o5k6dGDk8ZLh41ZCnlAVWkhVSKs5pYtzkrlJIfUSzyuoe8nuFsVe3QIDAQAB" ];
|
||||
}
|
||||
(builtins.removeAttrs (genCNAMEs "nuc") ([ ":2018" ] ++ (builtins.filter (host: lib.strings.hasInfix "vpn" host) (getVirtualHosts "nuc"))))
|
||||
(builtins.removeAttrs (genCNAMEs "falkenstein") ([ ":2018" "mail" ]))
|
||||
(builtins.removeAttrs (genCNAMEs "falkenstein") ([ ":2018" "mail" "rfive.de" ] ++ (builtins.filter (host: lib.strings.hasInfix "vpn" host) (getVirtualHosts "nuc"))))
|
||||
# (mergeRecords [
|
||||
# (builtins.removeAttrs (genCNAMEs "nuc") ([ ":2018" ] ++ (builtins.filter (host: lib.strings.hasInfix "vpn" host) (getVirtualHosts "nuc"))))
|
||||
# (builtins.removeAttrs (genACMECNAMEs "nuc") ([ ":2018" ]))
|
||||
|
|
|
@ -107,7 +107,7 @@
|
|||
enable = true;
|
||||
};
|
||||
};
|
||||
caddy.virtualHosts."rspamd.${config.networking.domain}".extraConfig = ''
|
||||
caddy.virtualHosts."rspamd.vpn.${config.networking.domain}".extraConfig = ''
|
||||
|
||||
# for some reason this only works with http and not with https so we send every request through our wireguard tunnel
|
||||
reverse_proxy /outpost.goauthentik.io/* http://nuc.vpn.rfive.de:9000
|
||||
|
|
|
@ -14,6 +14,16 @@ in
|
|||
};
|
||||
};
|
||||
services.caddy.virtualHosts."${domain}".extraConfig = ''
|
||||
# for some reason this only works with http and not with https so we send every request through our wireguard tunnel
|
||||
reverse_proxy /outpost.goauthentik.io/* http://nuc.vpn.rfive.de:9000
|
||||
|
||||
# forward authentication to authentik
|
||||
forward_auth http://nuc.vpn.rfive.de:9000 {
|
||||
uri /outpost.goauthentik.io/auth/caddy
|
||||
|
||||
# capitalization of the headers is important, otherwise they will be empty
|
||||
copy_headers X-Authentik-Username X-Authentik-Groups X-Authentik-Email X-Authentik-Name X-Authentik-Uid X-Authentik-Jwt X-Authentik-Meta-Jwks X-Authentik-Meta-Outpost X-Authentik-Meta-Provider X-Authentik-Meta-App X-Authentik-Meta-Version
|
||||
}
|
||||
reverse_proxy 127.0.0.1:${toString port}
|
||||
'';
|
||||
}
|
||||
|
|
|
@ -7,6 +7,16 @@ in
|
|||
enable = true;
|
||||
};
|
||||
services.caddy.virtualHosts."${domain}".extraConfig = ''
|
||||
# for some reason this only works with http and not with https so we send every request through our wireguard tunnel
|
||||
reverse_proxy /outpost.goauthentik.io/* http://nuc.vpn.rfive.de:9000
|
||||
|
||||
# forward authentication to authentik
|
||||
forward_auth http://nuc.vpn.rfive.de:9000 {
|
||||
uri /outpost.goauthentik.io/auth/caddy
|
||||
|
||||
# capitalization of the headers is important, otherwise they will be empty
|
||||
copy_headers X-Authentik-Username X-Authentik-Groups X-Authentik-Email X-Authentik-Name X-Authentik-Uid X-Authentik-Jwt X-Authentik-Meta-Jwks X-Authentik-Meta-Outpost X-Authentik-Meta-Provider X-Authentik-Meta-App X-Authentik-Meta-Version
|
||||
}
|
||||
reverse_proxy 127.0.0.1:${toString config.services.prowlarr.settings.server.port}
|
||||
'';
|
||||
}
|
||||
|
|
|
@ -7,6 +7,16 @@ in
|
|||
enable = true;
|
||||
};
|
||||
services.caddy.virtualHosts."${domain}".extraConfig = ''
|
||||
# for some reason this only works with http and not with https so we send every request through our wireguard tunnel
|
||||
reverse_proxy /outpost.goauthentik.io/* http://nuc.vpn.rfive.de:9000
|
||||
|
||||
# forward authentication to authentik
|
||||
forward_auth http://nuc.vpn.rfive.de:9000 {
|
||||
uri /outpost.goauthentik.io/auth/caddy
|
||||
|
||||
# capitalization of the headers is important, otherwise they will be empty
|
||||
copy_headers X-Authentik-Username X-Authentik-Groups X-Authentik-Email X-Authentik-Name X-Authentik-Uid X-Authentik-Jwt X-Authentik-Meta-Jwks X-Authentik-Meta-Outpost X-Authentik-Meta-Provider X-Authentik-Meta-App X-Authentik-Meta-Version
|
||||
}
|
||||
reverse_proxy 127.0.0.1:${toString config.services.radarr.settings.server.port}
|
||||
'';
|
||||
}
|
||||
|
|
|
@ -11,8 +11,7 @@ in
|
|||
reverse_proxy /outpost.goauthentik.io/* http://nuc.vpn.rfive.de:9000
|
||||
|
||||
# forward authentication to authentik
|
||||
@NoAccess not path /api*
|
||||
forward_auth @NoAccess http://nuc.vpn.rfive.de:9000 {
|
||||
forward_auth http://nuc.vpn.rfive.de:9000 {
|
||||
uri /outpost.goauthentik.io/auth/caddy
|
||||
|
||||
# capitalization of the headers is important, otherwise they will be empty
|
||||
|
|
|
@ -126,6 +126,17 @@ in
|
|||
};
|
||||
};
|
||||
services.caddy.virtualHosts."${domain}".extraConfig = ''
|
||||
# for some reason this only works with http and not with https so we send every request through our wireguard tunnel
|
||||
reverse_proxy /outpost.goauthentik.io/* http://nuc.vpn.rfive.de:9000
|
||||
|
||||
# forward authentication to authentik
|
||||
forward_auth http://nuc.vpn.rfive.de:9000 {
|
||||
uri /outpost.goauthentik.io/auth/caddy
|
||||
|
||||
# capitalization of the headers is important, otherwise they will be empty
|
||||
copy_headers X-Authentik-Username X-Authentik-Groups X-Authentik-Email X-Authentik-Name X-Authentik-Uid X-Authentik-Jwt X-Authentik-Meta-Jwks X-Authentik-Meta-Outpost X-Authentik-Meta-Provider X-Authentik-Meta-App X-Authentik-Meta-Version
|
||||
}
|
||||
|
||||
reverse_proxy 127.0.0.1:${toString cfg.port}
|
||||
'';
|
||||
systemd.tmpfiles.rules = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue