mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
nixos/nginx: fix typo in listenAdresses
This commit is contained in:
parent
e409211f2d
commit
035dcc0e7e
1 changed files with 1 additions and 1 deletions
|
@ -241,7 +241,7 @@ let
|
||||||
defaultListen =
|
defaultListen =
|
||||||
if vhost.listen != [] then vhost.listen
|
if vhost.listen != [] then vhost.listen
|
||||||
else
|
else
|
||||||
let addrs = if vhost.listenAddresses != [] then vhost.listenAddreses else (
|
let addrs = if vhost.listenAddresses != [] then vhost.listenAddresses else (
|
||||||
[ "0.0.0.0" ] ++ optional enableIPv6 "[::0]"
|
[ "0.0.0.0" ] ++ optional enableIPv6 "[::0]"
|
||||||
);
|
);
|
||||||
in
|
in
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue