On Jul 28, 7:35 am, boubou_cs <[email protected]> wrote:
> hello,
>
> I do not know exactly where are the paths of the certificate and
> private key :
>
>         path/to/ssl_certificate
>         path/to/ssl_private_key
>
> I created an SSL certificate using the following commands:
>
> sudo apt-get install openssl
> cd /etc/ssl
> sudo openssl genrsa -out server.key 1024
> sudo openssl req -new -key server.key -out server.csr
> sudo openssl x509 -req -days 365 -in server.csr -signkey server.key -
> out server.crt
>
> Then I assumed that the paths were as follows: /etc/ssl/certs and /etc/
> ssl/private.

try this:

cd /etc/ssl
find .

-jason

-- 
You received this message because you are subscribed to the Google Groups 
"web.py" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/webpy?hl=en.

Reply via email to