mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-05-15 00:31:07 +02:00
add authentication to all services
This commit is contained in:
parent
7656a942c0
commit
7fe28374b8
5 changed files with 42 additions and 2 deletions
|
@ -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