Page 1 of 1

HTTPS connector

Posted: Thu Mar 18, 2010 1:23 pm
by Mordechai
Hi ,
How can I configure OpenEmm to provide a HTTPS connector?

Posted: Thu Mar 18, 2010 9:43 pm
by maschoff
The next major release of OpenEMM will run on Tomcat, which supports SSL/HTTPS out of the box.

Configure OpenEmm to work with a secured connection.

Posted: Sun Mar 21, 2010 8:28 am
by Mordechai
In order the configure OpenEmm to work with secured connection , the next steps should be taken (using Linux/Unix machines):
1) Generate a key using the next command :
keytool -genkey -keyalg RSA -alias myserverkeypair \
-storepass YourPasswordHere -keystore private.keystore
(use this link in order to install this Java tool use this link: [url]http://java.sun.com/javase/technologies/security/ ).
2) add the next piece of code to the openemm/conf/core.conf :
[code]<http server-id="core" host="*" port="8445">
<jsse-ssl>
<key-store-type>jks</key-store-type>
<key-store-file>file:///home/openemm/conf/OpenEmmKeystore.keystore</key-store-file>
<password>123456</password>
</jsse-ssl>
</http>
The password must be the corresponding password to the key that was generated at the previous step.The key-store-file is the path to the keystroe file .

I believe that's it , if you were facing some difficulties , don't hesitate to contact me by this post .

Regards.[/code][/url][url][/url]

Re: HTTPS connector

Posted: Wed Jul 13, 2011 1:33 pm
by syscol
How to do it with a signed certificate ?