nginx: nit change null comparison
This commit is contained in:
parent
50877bfe4c
commit
0d47a24342
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue