summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'www-apps/ttyd/files/ttyd.confd')
-rw-r--r--www-apps/ttyd/files/ttyd.confd17
1 files changed, 12 insertions, 5 deletions
diff --git a/www-apps/ttyd/files/ttyd.confd b/www-apps/ttyd/files/ttyd.confd
index 57d24e3fb394..8e614522b436 100644
--- a/www-apps/ttyd/files/ttyd.confd
+++ b/www-apps/ttyd/files/ttyd.confd
@@ -5,12 +5,15 @@
# Some of the meaningful options are:
# -p, --port Port to listen (default: 7681, use `0` for random port)
# -i, --interface Network interface to bind (eg: eth0), or UNIX domain socket path (eg: /var/run/ttyd.sock)
-# -c, --credential Credential for Basic Authentication (format: username:password)
+# -U, --socket-owner User owner of the UNIX domain socket file, when enabled (eg: user:group)
+# -c, --credential Credential for basic authentication (format: username:password)
+# -H, --auth-header HTTP Header name for auth proxy, this will configure ttyd to let a HTTP reverse proxy handle authentication
# -u, --uid User id to run with
# -g, --gid Group id to run with
# -s, --signal Signal to send to the command when exit it (default: 1, SIGHUP)
-# -r, --reconnect Time to reconnect for the client in seconds (default: 10)
-# -R, --readonly Do not allow clients to write to the TTY
+# -w, --cwd Working directory to be set for the child program
+# -a, --url-arg Allow client to send command line arguments in URL (eg: http://localhost:7681?arg=foo&arg=bar)
+# -W, --writable Allow clients to write to the TTY (readonly by default)
# -t, --client-option Send option to client (format: key=value), repeat to add more options
# -T, --terminal-type Terminal type to report, default: xterm-256color
# -O, --check-origin Do not allow websocket connection from different origin
@@ -18,12 +21,16 @@
# -o, --once Accept only one client and exit on disconnection
# -B, --browser Open terminal with the default system browser
# -I, --index Custom index.html path
+# -b, --base-path Expected base path for requests coming from a reverse proxy (eg: /mounted/here, max length: 128)
+# -P, --ping-interval Websocket ping interval(sec) (default: 5)
# -6, --ipv6 Enable IPv6 support
# -S, --ssl Enable SSL
# -C, --ssl-cert SSL certificate file path
# -K, --ssl-key SSL key file path
# -A, --ssl-ca SSL CA file path for client certificate verification
# -d, --debug Set log level (default: 7)
-# login --- Login with system accounts
+# -v, --version Print the version and exit
+# -h, --help Print this text and exit
-TTYD_OPTS="login"
+
+TTYD_OPTS="-W login"