Please enable JavaScript to view this site.

InterFormNG Manual 2020

It is possible to enable HTTPs for the web interface on the windows platform with the procedure below:

 

1.Copy certificate to \Program Files\InterFormNG\ folder.

2.Create application.properties.

3.Restart service-web.

4.Open https://localhost:1885 in a browser.

 

A self-signed certificate can be created with this command:

 

keytool -genkey -alias tomcat -storetype PKCS12 -keyalg RSA -keysize 2048 -keystore keystore.p12 -validity 3650

   password: secret

 

application.properties can be created by any text editor:

 

server.ssl.keyAlias: tomcat

server.ssl.keyStoreType: PKCS12

server.ssl.key-store: keystore.p12

server.ssl.key-store-password: secret

 

To switch back to HTTP, delete (or rename) the application.properties file in the \Program Files\InterFormNG\ folder.