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.:
- Log in to the front-end server.
- Locate the
/opt/kerio/proxy/bin
directory. - Back up the
nginx.conf
file. - Open the
nginx.conf
file for editing. - 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;
}
- 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;
}
- Save the
nginx.conf
file. - Restart the front-end server.