HTTPS connector

Use this forum for questions regarding installation, upgrading and configuration of OpenEMM

Moderator: moderator

Mordechai
Posts: 2
Joined: Thu Mar 18, 2010 1:06 pm
Location: TLV

HTTPS connector

Post by Mordechai »

Hi ,
How can I configure OpenEmm to provide a HTTPS connector?
maschoff
Site Admin
Posts: 2628
Joined: Thu Aug 03, 2006 10:20 am
Location: Munich, Germany
Contact:

Post by maschoff »

The next major release of OpenEMM will run on Tomcat, which supports SSL/HTTPS out of the box.
OpenEMM Maintainer
Mordechai
Posts: 2
Joined: Thu Mar 18, 2010 1:06 pm
Location: TLV

Configure OpenEmm to work with a secured connection.

Post 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]
syscol
Posts: 7
Joined: Mon Mar 19, 2007 4:21 pm

Re: HTTPS connector

Post by syscol »

How to do it with a signed certificate ?
Post Reply