Skip to content

Commit

Permalink
Merge branch 'busybox' of https://github.com/nggit/noVNC
Browse files Browse the repository at this point in the history
  • Loading branch information
CendioOssman committed Nov 7, 2022
2 parents 4cfe0ff + 2dd5600 commit 64ffdc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/novnc_proxy
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ echo "Starting webserver and WebSockets proxy on port ${PORT}"
${WEBSOCKIFY} ${SYSLOG_ARG} ${SSLONLY} ${FILEONLY_ARG} --web ${WEB} ${CERT:+--cert ${CERT}} ${KEY:+--key ${KEY}} ${PORT} ${VNC_DEST} ${HEARTBEAT_ARG} ${IDLETIMEOUT_ARG} ${RECORD_ARG} ${TIMEOUT_ARG} ${WEBAUTH_ARG} ${AUTHPLUGIN_ARG} ${AUTHSOURCE_ARG} &
proxy_pid="$!"
sleep 1
if ! ps -p ${proxy_pid} >/dev/null; then
if [ -z "$proxy_pid" ] || ! ps -eo pid= | grep -w "$proxy_pid" > /dev/null; then
proxy_pid=
echo "Failed to start WebSockets proxy"
exit 1
Expand Down

0 comments on commit 64ffdc1

Please sign in to comment.