nginx: nit change null comparison

This commit is contained in:
ibizaman 2025-12-29 22:52:00 +01:00
parent 303dff30be
commit 6b732800ab

View file

@ -215,7 +215,7 @@ in
'';
# Virtual endpoint created by nginx to forward auth requests.
locations."/authelia".extraConfig = lib.mkIf (!(isNull c.authEndpoint)) ''
locations."/authelia".extraConfig = lib.mkIf (c.authEndpoint != null) ''
internal;
proxy_pass ${c.authEndpoint}/api/verify;