diff options
author | Jade <git@schrottkatze.de> | 2023-05-25 18:21:01 +0000 |
---|---|---|
committer | Jade <git@schrottkatze.de> | 2023-05-25 18:21:01 +0000 |
commit | be9196430d422c37c25a7f32a09a9c1fa9c52c43 (patch) | |
tree | eb007ea52d467ffc71cf5b96a2db63139668b9f7 | |
parent | 533bccad8f181da2b9c8bd1e439a416f93c6d354 (diff) | |
download | conduit-be9196430d422c37c25a7f32a09a9c1fa9c52c43.zip |
fix nix readme to work with ipv6
-rw-r--r-- | nix/README.md | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/nix/README.md b/nix/README.md index 77bad0f..f8537d5 100644 --- a/nix/README.md +++ b/nix/README.md @@ -118,10 +118,19 @@ in ssl = true; } { + addr = "[::]"; + port = 443; + ssl = true; + } { addr = "0.0.0.0"; port = 8448; ssl = true; } + { + addr = "[::]"; + port = 8448; + ssl = true; + } ]; locations."/_matrix/" = { |