1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

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>
This commit is contained in:
Zacchaeus
2025-07-11 19:34:14 -07:00
committed by Danny Milosavljevic
parent 564ba45905
commit c40c69766d
2 changed files with 7 additions and 7 deletions

View File

@@ -23201,7 +23201,7 @@ Services of this type can be extended by other services to specify
(simple-service 'my-extra-onion-service tor-service-type
(list (tor-onion-service-configuration
(name "extra-onion-service")
(mapping '((80 . "127.0.0.1:8080"))))))
(mapping '((80 "127.0.0.1:8080"))))))
@end lisp
@end defvar
@@ -23275,8 +23275,8 @@ Service.
@item @code{mapping} (type: 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.