Reporter 10.2.x adds the ability to create and import a custom certificate to be used to secure the Reporter management interface and FTPS server.
Reporter 10.2.x requires the certificate and key to be converted to a PKCS12 certificate.
This example uses OpenSSL on Linux.
Create the Certificate:
openssl req -x509 -nodes -days 365 -newkey rsa:2048 -sha256 -keyout newkey -out newcert -subj /O=Reporter/OU=4xxxxxxxx1/CN=192.168.1.10
openssl pkcs12 -export -name defaultcertkey -in newcert -inkey newkey -out reportercert.p12 -passout pass:testing
You can now host this certificate on your web server and import it into Reporter. Use the command: security import-server-certificate <URL>
example: security import-server-certificate http://192.168.23.10/reportercert.p12