Installing ssl

Can anyone point me to a document or step by step instructions as to how
to
install SSL / make it work with nginx?

thanks

Ilan B. wrote:

Can anyone point me to a document or step by step instructions as to
how to install SSL / make it work with nginx?

I think you’ll find the wiki quite informative for simple questions like
this.

See Module ngx_http_ssl_module

To generate a key and CSR, if you don’t have one, run

openssl req -new -nodes -keyout yourServerName.key -out

yourServerName.csr

and follow the prompts.

thanks

Jim