HTTPS certificate problem

Hi,

Trying to set up SSL on a hotspot and get the following error after the certificate is installed and the https is accesed:

“firefox can’t connect securely to 192.168.1.1 because the site uses a security protocol which isn’t enabled”

I used a debian box to generate the key files with this script:

#!/bin/sh
SERVER=customers.server.org
PRIVATE_KEY=$SERVER.key
CERTIFICATE_FILE=$SERVER
VALID_DAYS=1095

openssl genrsa -des3 -out $PRIVATE_KEY 1024

openssl req -new -x509 -days $VALID_DAYS -key $PRIVATE_KEY -out $CERTIFICATE_FILE # Autocertified

Anybody got any ides??

My Bad!!

Had not decrypted key properly.

Sorry for bad post!