<?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>HeXeЯ &#187; ssl</title>
	<atom:link href="http://blog.hexnet.biz/tag/ssl/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.hexnet.biz</link>
	<description>[ Spam 3.0 ]</description>
	<lastBuildDate>Sat, 03 Apr 2010 22:55:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Apache in SSL #2</title>
		<link>http://blog.hexnet.biz/2008/04/02/apache-in-ssl-2/</link>
		<comments>http://blog.hexnet.biz/2008/04/02/apache-in-ssl-2/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 14:24:52 +0000</pubDate>
		<dc:creator>HeXeR</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://www.hexnet.biz/blog/?p=123</guid>
		<description><![CDATA[Tako SSL certifikat imamo, sedaj pa še konfiguriramo apache &#8230; # SSL SSLEngine on SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL SSLCertificateFile /var/ssl/secure.cert SSLCertificateKeyFile /var/ssl/secure.key #. .. &#60;Directory &#8220;/var/www/haha/&#8221;&#62; SSLOptions +StrictRequire SSLRequireSSL SSLRequire %{HTTP_HOST} eq &#8220;domena.org&#8221; # SSL dovolimo samo na določeni (pod)domeni ErrorDocument 403 http://www.hekni-me.biz/ # ali . .. ErrorDocument 403 &#8216;Haha, n00b si !&#8217; # . .. In [...]]]></description>
			<content:encoded><![CDATA[<p>Tako SSL certifikat imamo, sedaj pa še konfiguriramo apache &#8230;</p>
<blockquote><p>   # SSL<br />
SSLEngine on<br />
SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL<br />
SSLCertificateFile /var/ssl/secure.cert<br />
SSLCertificateKeyFile /var/ssl/secure.key</p>
<p>#. ..</p>
<p>&lt;Directory &#8220;/var/www/haha/&#8221;&gt;<br />
SSLOptions +StrictRequire<br />
SSLRequireSSL<br />
SSLRequire %{HTTP_HOST} eq &#8220;domena.org&#8221; # SSL dovolimo samo na določeni (pod)domeni<br />
ErrorDocument 403 http://www.hekni-me.biz/<br />
# ali . ..<br />
ErrorDocument 403 &#8216;Haha, n00b si !&#8217;</p>
<p># . ..</p></blockquote>
<p>In to je to <img src='http://blog.hexnet.biz/wp-content/plugins/tango-smileys-extended/tango/grin.png' alt='Grin' title='Grin' class='tse-smiley' /> .</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hexnet.biz/2008/04/02/apache-in-ssl-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apache in SSL</title>
		<link>http://blog.hexnet.biz/2008/04/02/apache-in-ssl/</link>
		<comments>http://blog.hexnet.biz/2008/04/02/apache-in-ssl/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 14:13:19 +0000</pubDate>
		<dc:creator>HeXeR</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://www.hexnet.biz/blog/?p=122</guid>
		<description><![CDATA[Prva stvar, ki jo potrebujemo je SSL certifikat &#8230; http://www.apache-ssl.org/#FAQ Step one &#8211; create the key and request: openssl req -new &#62; new.cert.csr Step two &#8211; remove the passphrase from the key (optional): openssl rsa -in privkey.pem -out new.cert.key Step three &#8211; convert request into signed cert: openssl x509 -in new.cert.csr -out new.cert.cert -req -signkey [...]]]></description>
			<content:encoded><![CDATA[<p>Prva stvar, ki jo potrebujemo je SSL certifikat &#8230;</p>
<p>http://www.apache-ssl.org/#FAQ</p>
<blockquote><p> Step one &#8211; create the key and request:<strong>  openssl req -new &gt; new.cert.csr</strong></p>
<p>Step two &#8211; remove the passphrase from the key (optional):</p>
<p><strong>  openssl rsa -in privkey.pem -out new.cert.key</strong></p>
<p>Step three &#8211; convert request into signed cert:</p>
<p><strong>   openssl x509 -in new.cert.csr -out new.cert.cert -req -signkey new.cert.key -days 365</strong></p>
<p>The Apache-SSL directives that you need to use the resulting cert are:</p>
<p><em>  SSLCertificateFile /path/to/certs/new.cert.cert<br />
SSLCertificateKeyFile /path/to/certs/new.cert.key</em></p></blockquote>
<p>lahko pred tem odskakljate v mapo, kjer želite imeti certifikat, drugače pa se bo pojavil v /root/&#8230; privzeto.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hexnet.biz/2008/04/02/apache-in-ssl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
