Enforcing HTTPS in Kerio Connect Multi-Server

You can configuring the front-end server to enforce all Kerio Connect Multi-Server traffic through HTTPSSecure version of secured by SSL.:

  1. Log in to the front-end server.
  2. Locate the /opt/kerio/proxy/bin directory.
  3. Back up the nginx.conf file.
  4. Open the nginx.conf file for editing.
  5. Locate the following lines at the end of the file:

server {
    listen 80;
    listen [::]:80 ipv6only=on;
    listen 8800;
    listen [::]:8800 ipv6only=on;
    include http_server_settings.conf;
       }

  1. Replace the lines from step 5 with the following:

server {
    listen 80;
    return 301 https://$host$request_uri;
        }

server {
    listen 8800;
    return 301 https://$host:8843$request_uri;
        }
  1. Save the nginx.conf file.
  2. Restart the front-end server.