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
is any setting to provide server with SSL encryption?
The text was updated successfully, but these errors were encountered:
You'd have to add the certificate information in the createServer-command in this file: https://github.com/inolen/quakejs/blob/master/bin/web.js
createServer
https://github.com/inolen/quakejs/blob/master/bin/web.js
Something like
var privateKey = fs.readFileSync( 'privatekey.pem' ); var certificate = fs.readFileSync( 'certificate.pem' ); https.createServer({ key: privateKey, cert: certificate }, app).listen(port);
More information: https://nodejs.org/api/https.html#https_https_createserver_options_requestlistener
Sorry, something went wrong.
Thank you! But there is ws:// protocol used to find dedicated servers and this request fails when server runned over https.
No branches or pull requests
is any setting to provide server with SSL encryption?
The text was updated successfully, but these errors were encountered: