On-Premise/Standalone Guide
Changing GetInt license
Navigate to SYSTEM
Click on LICENSE tab
Click EDIT button
Paste received license from support team
Click SUBMIT button
New license should be applied and already used by GetInt
Running GetInt on different HTTP port / HTTPS
GetInt application is Java web application that as all other web apps, can be run on different HTTP ports. HTTP port 80 is a default port.
How to change port?
You can simply change it in getint.env file, value for PORT variable, e.g. change it to 8080 port.
After a change restart of application will be needed.
Setting up HTTPS with SSL certificate
At the moment, easiest way of doing this is to use some proxy server like NGINX which will handle SSL certificates and proxy traffic to GetInt application.
For NGINX, here is a configuration file that when included into NGINX main configuration, will listen at 443 port and for traffic to <DOMAIN>. It is loading SSL cert and key. Such traffic will be internally proxied to GetInt application running on <PORT> port.
<DOMAIN> and <PORT> is sth that you have to specify according to your GetInt deployment. <DOMAIN> is domain name which you open when you want to access GetInt and <PORT> is a port defined in getint.env file.
Updating version
At the moment updates are handled manually.
There is experimental feature for performing updates in almost fully automatic way but its not yet ready to use in production.
Manual way
Download and unpack new version of GetInt
From unpacked directory, copy getint.jar file from synchronizer/libs dir and copy to <CURRENT_INSTALLATION>/synchronizer/libs directory
Restart application
Last updated