Changes between Version 36 and Version 37 of ProxyServer
- Timestamp:
- 06/05/18 16:06:28 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ProxyServer
v36 v37 117 117 * Start a proxy server on port 14501 using the "{{{sqlite}}}" authentication module (we will call this server {{{PROXYHOST}}}): 118 118 {{{ 119 xpra proxy :100 --bind-tcp=0.0.0.0:14501 --tcp-auth=sqlite,filename=./xpra-auth.sdb 119 xpra proxy :100 --bind-tcp=0.0.0.0:14501 --tcp-auth=sqlite,filename=./xpra-auth.sdb --socket-dir=/tmp 120 120 }}} 121 121 and add user entries (ie: {{{foo}}} with password {{{bar}}}), pointing to the {{{TARGETHOST}}} session (ie: {{{192.168.1.200}}} is the {{{TARGETHOST}}}'s IP): … … 155 155 * see also [ticket:1264#comment:3] for authentication between proxy and server, just specify the username and password in the connection string 156 156 * you can omit the uid and gid and the special user / group "nobody" will be used (posix servers only) 157 * this example uses {{{socket-dir=/tmp}}} to ensure that the proxy instances can create their sockets, no matter what user they runs as - this is not always necessary (ie: not usually needed when running as non-root) 157 158 * you can specify the uid and gid using their names (ie: uid="joe", gid="users", posix servers only) or numerical values (ie: 1000) 158 159 * see #1319 for starting new sessions via the proxy (posix servers only)