We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug As soon as I use the --cert --key as arguments and the path to the cert contains spaces, I get the following error.
/Library/websockify/websockify/websocket.py:31: UserWarning: no 'numpy' module, HyBi protocol will be slower warnings.warn("no 'numpy' module, HyBi protocol will be slower") Usage: main.py [options] [source_addr:]source_port target_addr:target_port main.py [options] --token-plugin=CLASS [source_addr:]source_port main.py [options] --unix-target=FILE [source_addr:]source_port main.py [options] [source_addr:]source_port -- WRAP_COMMAND_LINE
main.py: error: Error parsing listen port
Failed to start WebSockets proxy
To Reproduce Steps to reproduce the behavior:
Expected behavior websockify should launch and noVNC accessible.
Screenshots If applicable, add screenshots to help explain your problem.
Client (please complete the following information):
Server (please complete the following information):
Additional context Solution Changing line 195 of novnc_proxy to the following, solves the issue: ${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} &
The text was updated successfully, but these errors were encountered:
This should be fixed by #1741, but unfortunately that PR has stalled. :/
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Describe the bug
As soon as I use the --cert --key as arguments and the path to the cert contains spaces, I get the following error.
/Library/websockify/websockify/websocket.py:31: UserWarning: no 'numpy' module, HyBi protocol will be slower
warnings.warn("no 'numpy' module, HyBi protocol will be slower")
Usage:
main.py [options] [source_addr:]source_port target_addr:target_port
main.py [options] --token-plugin=CLASS [source_addr:]source_port
main.py [options] --unix-target=FILE [source_addr:]source_port
main.py [options] [source_addr:]source_port -- WRAP_COMMAND_LINE
main.py: error: Error parsing listen port
Failed to start WebSockets proxy
To Reproduce
Steps to reproduce the behavior:
Expected behavior
websockify should launch and noVNC accessible.
Screenshots
If applicable, add screenshots to help explain your problem.
Client (please complete the following information):
Server (please complete the following information):
Additional context
Solution
Changing line 195 of novnc_proxy to the following, solves the issue: ${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} &
The text was updated successfully, but these errors were encountered: