<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Creating CSR and implement in apache &#8211; Arun&#8217;s blog</title>
	<atom:link href="https://arunns.net/tag/creating-csr-and-implement-in-apache/feed/" rel="self" type="application/rss+xml" />
	<link>https://arunns.net</link>
	<description>Arun&#039;s blog</description>
	<lastBuildDate>Wed, 03 Apr 2013 19:56:21 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.4.2</generator>
	<item>
		<title>Create CSR and implement in apache</title>
		<link>https://arunns.net/creating-csr-and-implement-in-apache/</link>
					<comments>https://arunns.net/creating-csr-and-implement-in-apache/#comments</comments>
		
		<dc:creator><![CDATA[Arun N.]]></dc:creator>
		<pubDate>Wed, 03 Apr 2013 19:56:21 +0000</pubDate>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Creating CSR and implement in apache]]></category>
		<category><![CDATA[CSR]]></category>
		<category><![CDATA[generate CSR]]></category>
		<category><![CDATA[implement verisign certificate in apache]]></category>
		<category><![CDATA[intermediate certificate]]></category>
		<guid isPermaLink="false">http://arunnsblog.com/?p=746</guid>

					<description><![CDATA[These steps are used to generate a CSR to get the SSL certificate signed with verisign. The filenames used are just examples. $ /usr/bin/openssl genrsa -rand /dev/urandom -out &#60;web_root&#62;/domain_name.key 2048 $ /usr/bin/openssl req -new -key &#60;web_root&#62;/domain_name.key -out &#60;web_root&#62;/domain_name.csr Country Name (2 letter code) [GB]: State or Province Name (full name) [Berkshire]: Locality Name (eg, city) [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>These steps are used to generate a CSR to get the SSL certificate signed with verisign. The filenames used are just examples.</p>
<blockquote><p>$ /usr/bin/openssl genrsa -rand /dev/urandom -out &lt;web_root&gt;/domain_name.key 2048<br />
$ /usr/bin/openssl req -new -key &lt;web_root&gt;/domain_name.key -out &lt;web_root&gt;/domain_name.csr</p>
<p>Country Name (2 letter code) [GB]:<br />
State or Province Name (full name) [Berkshire]:<br />
Locality Name (eg, city) [Newbury]:<br />
Organization Name (eg, company) [My Company Ltd]:<br />
Organizational Unit Name (eg, section) []:<br />
Common Name (eg, your name or your server&#8217;s hostname) []:&lt;make sure it matches exactly with your domain&gt;<br />
Email Address []:</p></blockquote>
<p>Create the certificate without passphrase if you dont want passphrase to be prompted for every webserver restart.</p>
<p>Upload the CSR to the Certificate Authority and get the signed certificate and save it as domain_name.crt. If it is from verisign get both intermediate certificates and add it to a file (eg: intermediate.ca.crt)</p>
<p>In virtual host configuration</p>
<blockquote><p>SSLEngine on</p>
<p>SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:!LOW:!SSLv2:+EXP:!EXP-EDH-RSA-DES-CBC-SHA:!EXP-DES-CBC-SHA!EXP-RC2-CBC-MD5!EXP-RC4-MD5</p>
<p>SSLCertificateFile &lt;web_root&gt;/domain_name.crt</p>
<p>SSLCertificateKeyFile &lt;web_root&gt;/domain_name.key</p>
<p>SSLCACertificateFile &lt;web_root&gt;/intermediate.ca.crt</p></blockquote>
<p>Restart webservice and verify the certificate, you may use the verisign cert checker (https://ssl-tools.verisign.com/#certChecker)</p>
]]></content:encoded>
					
					<wfw:commentRss>https://arunns.net/creating-csr-and-implement-in-apache/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
