Notice: This forum has been recovered from an old backup, so some content, links, and dates may be outdated. The forum is currently read-only while we restore sign-in and registration functionality. Details
If you find this forum valuable and would like to help keep it online, donations to help cover hosting and domain costs are greatly appreciated, but never expected. You can support the forum through Buy Me a Coffee or Ko-fi. Thank you for helping preserve the EventGhost community.
If you find this forum valuable and would like to help keep it online, donations to help cover hosting and domain costs are greatly appreciated, but never expected. You can support the forum through Buy Me a Coffee or Ko-fi. Thank you for helping preserve the EventGhost community.
Search found 3 matches
- Fri Feb 07, 2014 12:34 pm
- Forum: Plugin Support
- Topic: PushBullet plugin (sfalkman)
- Replies: 4
- Views: 3574
Re: PushBullet plugin
It works great. Thanks to this plugin I can have feedback on my cell phone when I trigger some EventGhost actions remotely. I was using mail before, but this is faster and neater 
- Thu Feb 06, 2014 5:16 pm
- Forum: Plugin Support
- Topic: Tornado (webserver with WebSocket)
- Replies: 94
- Views: 34617
Re: Any chance to get HTTPS / SSL?
Hi again.
I just read Tornado documentation and managed to modify the plugin to require SSL connections.
You must add to the import section:
import ssl
And then replace self.http_server = tornado.httpserver.HTTPServer(self) by:
self.http_server = tornado.httpserver.HTTPServer(self,
ssl ...
I just read Tornado documentation and managed to modify the plugin to require SSL connections.
You must add to the import section:
import ssl
And then replace self.http_server = tornado.httpserver.HTTPServer(self) by:
self.http_server = tornado.httpserver.HTTPServer(self,
ssl ...
- Wed Feb 05, 2014 4:36 pm
- Forum: Plugin Support
- Topic: Tornado (webserver with WebSocket)
- Replies: 94
- Views: 34617
Any chance to get HTTPS / SSL?
Hi Pako.
Would it be possible to add HTTPS support into this plugin?
I'm a newbie in Python. did some research and found some info like http://www.piware.de/2011/01/creating-an-https-server-in-python/
Someone also suggested using Request: http://www.eventghost.net/forum/viewtopic.php?f=2&t=5956&p ...
Would it be possible to add HTTPS support into this plugin?
I'm a newbie in Python. did some research and found some info like http://www.piware.de/2011/01/creating-an-https-server-in-python/
Someone also suggested using Request: http://www.eventghost.net/forum/viewtopic.php?f=2&t=5956&p ...