diff --git a/doc/guix.texi b/doc/guix.texi index 63402f83d7a..94bda2cc9d6 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -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. 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