Advertisement
Guest User

SSL in mythtv

a guest
Feb 13th, 2015
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. in terminal:
  2. openssl genrsa 1024 > webfrontend.key
  3. chmod 400 webfrontend.key
  4. openssl req -new -x509 -nodes -sha1 -days 365 -key webfrontend.key > webfrontend.cert
  5. mv webfrontend.* /etc/
  6.  
  7. in DB:
  8. hostSSLKey = /etc/webfrontend.key
  9. hostSSLCertificate = /etc/webfrontend.cert
  10. caSSLCertificate = <empty>
  11.  
  12. BE log:
  13. SSL Handshake FAILED, connection terminated
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement