welcome: please sign in

Upload page content

You can upload content for the page named below. If you change the page name, you can also upload content for another page. If the page name is empty, we derive the page name from the file name.

File to load page content from
Page name
Comment
First name of the author of the GNU Manifesto

Revision 2 as of 2005-12-23 16:04:20

Edit

MemberManual / ServingWebsites / SslCert

To create a self-signed SSL cerificate in file.crt with key in file.key, you can run:

openssl req -x509 -newkey rsa:1024 -keyout file.key -out file.crt -days 9999 -nodes

If you are creating an SSL certificate to use for a web virtual host via domtool, then you should generate a single output file instead of separate .crt and .key files. For example:

openssl req -x509 -newkey rsa:1024 -keyout file.pem -out file.pem -days 9999 -nodes