It is recommended to use OpenSSL to create Lighttpd CSR file.

Start from typing your catalogue server:

cd /etc/lighttpd

Now generate CSR file with your private key, use commands:

openssl genrsa -des3 -out www.domain.ext.key 2048

openssl req -new -key www.domain.ext.key -out www.domain.ext.csr

After the second command you are asked for the Common Name. It is the domain name which will be secured. Be sure that the format is correct:yourdomain.com is a different address than www.yourdomain.com. For Wildcard certificates the format is *.yourdomain.com.

CSR will be saved as www.domain.ext.csr: open it with Notepad - you will need this to issue SSL certificate.

Was this answer helpful?

Related Articles

What is CSR and who needs it?
A Certificate Signing Request is a text generated on the server that is used to create your SSL...
Apache/OpenSSL
To generate a pair of private key and public Certificate Signing Request (CSR) for a webserver,...
Apache (with mod_ssl)
Installing SSL certificate on Apache with mod_ssl To install certificate you need 2...
Apache (Multi-Domain version)
To generate CSR file which includes more than one Fully Qualified Domain Name, you need to...
Apple Mac OS X Server
CSR is generated in 2 steps.I. Private key generation1. Log into server and open...