Skip to content
New issue

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

https #31

Closed
coldlamper opened this issue Jun 11, 2012 · 3 comments
Closed

https #31

coldlamper opened this issue Jun 11, 2012 · 3 comments

Comments

@coldlamper
Copy link

Awesome program. Any chance of ssl connections being added.

@ghost
Copy link

ghost commented Mar 2, 2013

nginx now support websockets https://chrislea.com/2013/02/23/proxying-websockets-with-nginx/

@peterfroehlich
Copy link

Yeah, native support would really be awesome

@msmathers
Copy link
Collaborator

At long last, v0.3.3 supports SSL. Add private key and certificate file paths to web_server.conf like so:

ssl: {  
  key: '/path/to/privatekey.pem',
  cert: '/path/to/certificate.pem'
}

If you need to generate your own private key and certificate:

openssl genrsa -out privatekey.pem 1024 
openssl req -new -key privatekey.pem -out certrequest.csr 
openssl x509 -req -in certrequest.csr -signkey privatekey.pem -out certificate.pem

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants