Merge pull request #180148 from Luflosi/nginx-fix-listenAddresses-example

nixos/nginx: fix broken listenAddresses example
This commit is contained in:
Winter 2022-07-25 17:47:00 -04:00 committed by GitHub
commit c4665307de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -60,7 +60,7 @@ with lib;
Note: This option overrides <literal>enableIPv6</literal>
'';
default = [];
example = [ "127.0.0.1" "::1" ];
example = [ "127.0.0.1" "[::1]" ];
};
enableACME = mkOption {