Difference between revisions of "Secure Sockets Layer"

From Organic Design wiki
m (Created page with '{{code|<pre> mkdir /var/www/ssl cd /var/www/ssl openssl req -new -newkey rsa:1024 -days 3650 -nodes -x509 -keyout organicdesign.co.nz.pem -out organicdesign.co.nz.pem </pre>}} ...')
 
m (cat in)
Line 1: Line 1:
 +
[[Category:Sysop procedures]][[Category:Installation]]
 
{{code|<pre>
 
{{code|<pre>
 
mkdir /var/www/ssl
 
mkdir /var/www/ssl

Revision as of 09:41, 1 April 2009


mkdir /var/www/ssl
cd /var/www/ssl
openssl req -new -newkey rsa:1024 -days 3650 -nodes -x509 -keyout organicdesign.co.nz.pem -out organicdesign.co.nz.pem


Ensure the common name (cn) is entered as

*.organicdesign.co.nz


Open the pem in a text editor and separate the key and cert into two files

/var/www/ssl/organicdesign.co.nz.crt
/var/www/ssl/organicdesign.co.nz.key
chown www-data organicdesign.co.nz *