Guest User

Untitled

a guest
Aug 21st, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. SSL configuration with play framework and the chain file
  2. https.port=9443
  3. certificate.key.file=conf/host.key
  4. certificate.file=conf/host.cert
  5.  
  6. %prod.http.port=80
  7. %prod.https.port=443
  8. %prod.certificate.key.file=conf/hostname.key
  9. %prod.certificate.file=conf/hostname.combined.crt
  10.  
  11. openssl x509 -inform PEM -in hostname.crt -text > hostname.combined.crt
  12. openssl x509 -inform PEM -in "sf_bundle.crt" -text >> hostname.combined.crt
  13.  
  14. sf_bundle.crt
  15. hostname.crt
  16. hostname.csr
  17. hostname.key
Add Comment
Please, Sign In to add comment