Changes between Version 11 and Version 12 of Clients/HTML5
- Timestamp:
- 01/11/17 16:24:22 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Clients/HTML5
v11 v12 8 8 * use both the {{{bind-tcp=...}}} and the {{{html=on}}} flags on the command line, ie: 9 9 {{{ 10 xpra start --bind-tcp=0.0.0.0:1 0000 --html=on --start-child=xterm10 xpra start --bind-tcp=0.0.0.0:14500 --html=on --start-child=xterm 11 11 }}} 12 You can then point your browser to [http://localhost:1 0000/] and the xterm should appear in your browser window.12 You can then point your browser to [http://localhost:14500/] and the xterm should appear in your browser window. 13 13 }}} 14 14 … … 22 22 {{{ 23 23 echo -n 123456 > ./password.txt 24 $ xpra start --bind-tcp=0.0.0.0:1 0000 --start=xterm --html=on \24 $ xpra start --bind-tcp=0.0.0.0:14500 --start=xterm --html=on \ 25 25 --auth=file --password-file=./password.txt 26 26 }}} … … 44 44 echo -n $PASSWORD > password.txt 45 45 echo -n $AES_KEY > aes.txt 46 xpra start :10 --bind-tcp=0.0.0.0:1 0000 --html=on --start=xterm \46 xpra start :10 --bind-tcp=0.0.0.0:14500 --html=on --start=xterm \ 47 47 --auth=file --password-file=`pwd`/password.txt \ 48 48 --tcp-encryption=AES --tcp-encryption-keyfile=`pwd`/aes.txt 49 49 sleep 5 50 xdg-open "http://localhost:1 0000/index.html?username=$USER&password=$PASSWORD&encryption=AES&key=$AES_KEY"50 xdg-open "http://localhost:14500/index.html?username=$USER&password=$PASSWORD&encryption=AES&key=$AES_KEY" 51 51 }}} 52 52 }}}