diff options
| author | Zacchaeus <eikcaz@zacchae.us> | 2025-07-11 19:34:14 -0700 |
|---|---|---|
| committer | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-08-03 11:07:45 +0200 |
| commit | c40c69766d16925d5ba64c8e5c6ce614825784e4 (patch) | |
| tree | 1b8f49ca7dadea7fce3aeee231232239326a2e64 /gnu | |
| parent | 564ba4590596da1e280038e353d953db2ccdda07 (diff) | |
doc: Correct tor-onion-service-configuration mapping documentation.
* doc/guix.texi (Networking Services): Fix tor-onion-service-configuration
description which was broken in commit 9be1ee6a49 when documentation was
changed to indicated that port-location mappings should be provided as cons
cells when the code always expected lists
Change-Id: Ib12d273cbd37976f9507a60a6d088078f71d4e7a
Signed-off-by: Danny Milosavljevic <dannym@friendly-machines.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/services/networking.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/services/networking.scm b/gnu/services/networking.scm index 6dc4eb2b1b2..c5ebb1b6730 100644 --- a/gnu/services/networking.scm +++ b/gnu/services/networking.scm @@ -1199,8 +1199,8 @@ Onion Service.") alist "Association list of port to address mappings. The following example: @lisp -'((22 . \"127.0.0.1:22\") - (80 . \"127.0.0.1:8080\")) +'((22 \"127.0.0.1:22\") + (80 \"127.0.0.1:8080\")) @end lisp maps ports 22 and 80 of the Onion Service to the local ports 22 and 8080.")) @@ -1395,8 +1395,8 @@ networking daemon."))) @var{mapping}. @var{mapping} is a list of port/host tuples, such as: @example - '((22 . \"127.0.0.1:22\") - (80 . \"127.0.0.1:8080\")) + '((22 \"127.0.0.1:22\") + (80 \"127.0.0.1:8080\")) @end example In this example, port 22 of the hidden service is mapped to local port 22, and |
