[GH-ISSUE #31] https #26

Closed
opened 2026-02-26 05:31:06 +03:00 by kerem · 3 comments
Owner

Originally created by @coldlamper on GitHub (Jun 11, 2012).
Original GitHub issue: https://github.com/NarrativeScience-old/log.io/issues/31

Awesome program. Any chance of ssl connections being added.

Originally created by @coldlamper on GitHub (Jun 11, 2012). Original GitHub issue: https://github.com/NarrativeScience-old/log.io/issues/31 Awesome program. Any chance of ssl connections being added.
kerem closed this issue 2026-02-26 05:31:06 +03:00
Author
Owner

@ghost commented on GitHub (Mar 2, 2013):

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

<!-- gh-comment-id:14337384 --> @ghost commented on GitHub (Mar 2, 2013): nginx now support websockets https://chrislea.com/2013/02/23/proxying-websockets-with-nginx/
Author
Owner

@peterfroehlich commented on GitHub (Mar 28, 2013):

Yeah, native support would really be awesome

<!-- gh-comment-id:15575408 --> @peterfroehlich commented on GitHub (Mar 28, 2013): Yeah, native support would really be awesome
Author
Owner

@msmathers commented on GitHub (Mar 29, 2013):

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
<!-- gh-comment-id:15665275 --> @msmathers commented on GitHub (Mar 29, 2013): 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 in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/log.io-NarrativeScience-old#26
No description provided.