Skip to content

er0k/synapse

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

synapse

install dependencies

pip install autobahn twisted service_identity

generate keys

cd keys
openssl genrsa -out server.key 2048
openssl req -new -key server.key -out server.csr
openssl x509 -req -days 3650 -in server.csr -signkey server.key -out server.crt
openssl x509 -in server.crt -out server.pem

helpful stuff

https://pawelmhm.github.io/python/websockets/2016/01/02/playing-with-websockets.html

chrome ws client: https://chrome.google.com/webstore/detail/simple-websocket-client/pfdhoblngboilpfeibdedpjgfnlcodoo?hl=en

https://github.com/crossbario/autobahn-python/tree/master/examples/twisted/websocket

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 49.3%
  • JavaScript 41.5%
  • HTML 8.0%
  • CSS 1.2%