diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2022-10-31 01:27:52 +0000 |
---|---|---|
committer | Laurent Bercot <ska@appnovation.com> | 2022-10-31 01:27:52 +0000 |
commit | 5dca72b1b1a29459665055522c1c436d120e6d50 (patch) | |
tree | d368c48e4647685abb49a2c511fe08159ffd9b5d /doc/s6-tlsserver.html | |
parent | 7423104f2a5e1dcbbad834fbbae3475ff6cf603a (diff) | |
download | s6-networking-5dca72b1b1a29459665055522c1c436d120e6d50.tar.xz |
Doc typo fixes
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'doc/s6-tlsserver.html')
-rw-r--r-- | doc/s6-tlsserver.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/s6-tlsserver.html b/doc/s6-tlsserver.html index 2ec3327..f1f4e91 100644 --- a/doc/s6-tlsserver.html +++ b/doc/s6-tlsserver.html @@ -208,15 +208,15 @@ given but no <tt>-i</tt> or <tt>-x</tt> option. </li> <p> As root: - <code> KEYFILE=/etc/ssl/private/mykey.der CERTFILE=/etc/ssl/public/mycert.pem \ - TLS_UID=65534 TLS_UID=65536 \ - s6-envuidgid www - s6-tlsserver -U -- 1.2.3.4 443 httpd </code> </p> +<pre>env KEYFILE=/etc/ssl/private/mykey.der CERTFILE=/etc/ssl/public/mycert.pem \ +TLS_UID=65534 TLS_UID=65534 \ +s6-envuidgid www \ +s6-tlsserver -U -- 1.2.3.4 443 httpd</pre> <p> This will start a server listening to 1.2.3.4 on TCP port 443, - and for every connection, spawn the <tt>httpd</tt> program +and for every connection, spawn the <tt>httpd</tt> program reading queries on stdin and replying on stdout, as user <tt>www</tt>, with a TLS layer protecting the connection, the TLS engine running as user <tt>nobody</tt> (<tt>65534:65534</tt>). The server is |