<?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>Urban Cetinski &#187; ssl</title>
	<atom:link href="http://urban.spletno-mesto.com/tag/ssl/feed/" rel="self" type="application/rss+xml" />
	<link>http://urban.spletno-mesto.com</link>
	<description>PHP, MySQL, jQuery, CSS, Zend Framework, Urban Cetinski</description>
	<lastBuildDate>Sat, 12 Mar 2011 09:57:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Subversion + SSL on Centos 5.4</title>
		<link>http://urban.spletno-mesto.com/subversion-ssl-on-centos-54/</link>
		<comments>http://urban.spletno-mesto.com/subversion-ssl-on-centos-54/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 12:07:56 +0000</pubDate>
		<dc:creator>Urban</dc:creator>
				<category><![CDATA[Centos]]></category>
		<category><![CDATA[secure]]></category>
		<category><![CDATA[ssl]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://urban.spletno-mesto.com/?p=683</guid>
		<description><![CDATA[yum install mod_dav_svn subversion mod_ssl [root@lucifer ~] htpasswd -cm /etc/svn-auth-conf yourusername New password: Re-type new password: Adding password for user yourusername [root@lucifer ~] htpasswd -m /etc/svn-auth-conf anotherusername New password: Re-type new password: Adding password for user anotherusername [root@lucifer ~] cd /var/www/ -- Or wherever you placed your path above [root@lucifer ~] mkdir svn [root@lucifer ~] cd svn [root@lucifer ~] svnadmin create repos [root@lucifer ~] chown -R apache.apache repos [root@lucifer ~] service httpd restart server# openssl [...]]]></description>
			<content:encoded><![CDATA[<pre>yum install mod_dav_svn subversion mod_ssl

[root@lucifer ~] htpasswd -cm /etc/svn-auth-conf yourusername
New password:
Re-type new password:
Adding password for user yourusername
[root@lucifer ~] htpasswd -m /etc/svn-auth-conf anotherusername
New password:
Re-type new password:
Adding password for user anotherusername

[root@lucifer ~] cd /var/www/ -- Or wherever you placed your path above
[root@lucifer ~] mkdir svn
[root@lucifer ~] cd svn
[root@lucifer ~] svnadmin create repos
[root@lucifer ~] chown -R apache.apache repos
[root@lucifer ~] service <a href="http://urban.spletno-mesto.com/tag/httpd/" class="st_tag internal_tag" rel="tag" title="Posts tagged with httpd">httpd</a> restart
server# openssl genrsa -des3 -rand file1:file1 -out svn.key 1024
server# openssl rsa -in svn.key -out svn.pem
server# openssl req -new -key svn.pem -out svn.csr
server# openssl x509 -req -days 365 -in svn.csr -signkey svn.pem -out svn.crt
server# cp svn.crt /etc/<a href="http://urban.spletno-mesto.com/tag/httpd/" class="st_tag internal_tag" rel="tag" title="Posts tagged with httpd">httpd</a>/conf/ssl.crt/
server# cp svn.pem /etc/<a href="http://urban.spletno-mesto.com/tag/httpd/" class="st_tag internal_tag" rel="tag" title="Posts tagged with httpd">httpd</a>/conf/ssl.key/
server# chmod go-rwx /etc/<a href="http://urban.spletno-mesto.com/tag/httpd/" class="st_tag internal_tag" rel="tag" title="Posts tagged with httpd">httpd</a>/conf/ssl.crt/svn.crt
server# chmod go-rwx /etc/<a href="http://urban.spletno-mesto.com/tag/httpd/" class="st_tag internal_tag" rel="tag" title="Posts tagged with httpd">httpd</a>/conf/ssl.key/svn.pem

nano /etc/<a href="http://urban.spletno-mesto.com/tag/httpd/" class="st_tag internal_tag" rel="tag" title="Posts tagged with httpd">httpd</a>/conf.d/subversion.conf

&amp;lt;VirtualHost 192.168.1.2:443&amp;gt;
DocumentRoot "/var/www/svn/repos/"
ServerName <a href="http://urban.spletno-mesto.com/tag/centos/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Centos">centos</a>-server
SSLEngine on
SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP
SSLCertificateFile /etc/<a href="http://urban.spletno-mesto.com/tag/httpd/" class="st_tag internal_tag" rel="tag" title="Posts tagged with httpd">httpd</a>/conf/ssl.crt/svn.crt
SSLCertificateKeyFile /etc/<a href="http://urban.spletno-mesto.com/tag/httpd/" class="st_tag internal_tag" rel="tag" title="Posts tagged with httpd">httpd</a>/conf/ssl.key/svn.pem
&amp;lt;Location /repos&amp;gt;
DAV svn
SVNPath /var/www/svn/repos
AuthType Basic
AuthName "Subversion repos"
AuthUserFile /etc/svn-auth-conf
Require valid-user
&amp;lt;/Location&amp;gt;
ServerAdmin xxx@<a href="http://urban.spletno-mesto.com/tag/gmail/" class="st_tag internal_tag" rel="tag" title="Posts tagged with gmail">gmail</a>.com
&amp;lt;/VirtualHost&amp;gt;
server# apachectl restart
</pre>
<p>Windows XP/Vista/Win7 client &#8211; http://tortoisesvn.net/downloads</p>
<p>Viri:</p>
<p>http://wiki.<a href="http://urban.spletno-mesto.com/tag/centos/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Centos">centos</a>.org/HowTos/Subversion</p>
<p>http://ricardo.strangevistas.net/setup-subversion-securely-on-<a href="http://urban.spletno-mesto.com/tag/centos/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Centos">centos</a>.html</p>
]]></content:encoded>
			<wfw:commentRss>http://urban.spletno-mesto.com/subversion-ssl-on-centos-54/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Secure Your Gmail Account With SSL Encryption</title>
		<link>http://urban.spletno-mesto.com/secure-your-gmail-account-with-ssl-encryption/</link>
		<comments>http://urban.spletno-mesto.com/secure-your-gmail-account-with-ssl-encryption/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 11:19:11 +0000</pubDate>
		<dc:creator>Urban</dc:creator>
				<category><![CDATA[Računalništvo]]></category>
		<category><![CDATA[always use https]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[httpd]]></category>
		<category><![CDATA[nastavitve]]></category>
		<category><![CDATA[settings]]></category>
		<category><![CDATA[ssl]]></category>
		<category><![CDATA[vedno uporabi https]]></category>

		<guid isPermaLink="false">http://urban.spletno-mesto.com/?p=623</guid>
		<description><![CDATA[Configure Gmail to Always Use SSL Ko se prijavite v Gmail račun kliknite desno zgoraj NASTAVITVE. in poiščite: Povezava z brskalnikom: - Vedno uporabi https -  Ne uporabi vedno https Vir]]></description>
			<content:encoded><![CDATA[<p>Configure <a href="http://urban.spletno-mesto.com/tag/gmail/" class="st_tag internal_tag" rel="tag" title="Posts tagged with gmail">Gmail</a> to Always <a href="http://urban.spletno-mesto.com/tag/use/" class="st_tag internal_tag" rel="tag" title="Posts tagged with use">Use</a> SSL</p>
<p>Ko se prijavite v <a href="http://urban.spletno-mesto.com/tag/gmail/" class="st_tag internal_tag" rel="tag" title="Posts tagged with gmail">Gmail</a> račun kliknite desno zgoraj <strong><a href="http://urban.spletno-mesto.com/tag/nastavitve/" class="st_tag internal_tag" rel="tag" title="Posts tagged with nastavitve">NASTAVITVE</a>.</strong></p>
<p><strong><br />
</strong><a href="http://urban.spletno-mesto.com/wp-content/uploads/google-gmail-settings.png" rel="shadowbox[post-623];player=img;"><img class="size-full wp-image-624" title="google-gmail-settings" src="http://urban.spletno-mesto.com/wp-content/uploads/google-gmail-settings.png" alt="google-gmail-settings" width="471" height="87" /></a></p>
<p>in poiščite:</p>
<p><strong>Povezava z brskalnikom:</strong></p>
<p><strong>- Vedno uporabi https<br />
-  Ne uporabi vedno https</strong></p>
<p><strong></p>
<div id="attachment_625" class="wp-caption aligncenter" style="width: 510px"><a href="http://urban.spletno-mesto.com/wp-content/uploads/google-settings-always-use-https.png" rel="shadowbox[post-623];player=img;"><img class="size-medium wp-image-625" title="google-settings-always-use-https" src="http://urban.spletno-mesto.com/wp-content/uploads/google-settings-always-use-https-500x141.png" alt="google-settings-always-use-https" width="500" height="141" /></a><p class="wp-caption-text"><a href="http://urban.spletno-mesto.com/tag/google/" class="st_tag internal_tag" rel="tag" title="Posts tagged with google">google</a>-settings-always-<a href="http://urban.spletno-mesto.com/tag/use/" class="st_tag internal_tag" rel="tag" title="Posts tagged with use">use</a>-https</p></div>
<p></strong></p>
<p><a href="http://www.howtogeek.com/howto/the-geek-blog/secure-your-gmail-account-with-ssl-encryption-without-breaking-gmail-notifier/" target="_blank">Vir</a></p>
]]></content:encoded>
			<wfw:commentRss>http://urban.spletno-mesto.com/secure-your-gmail-account-with-ssl-encryption/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Hack Gmail Notifier to Use SSL</title>
		<link>http://urban.spletno-mesto.com/how-to-hack-gmail-notifier-to-use-ssl/</link>
		<comments>http://urban.spletno-mesto.com/how-to-hack-gmail-notifier-to-use-ssl/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 11:11:16 +0000</pubDate>
		<dc:creator>Urban</dc:creator>
				<category><![CDATA[Na spletu dogaja ...]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[notifier]]></category>
		<category><![CDATA[ssl]]></category>
		<category><![CDATA[use]]></category>

		<guid isPermaLink="false">http://urban.spletno-mesto.com/?p=621</guid>
		<description><![CDATA[Downloadable Registry Hack Google is actually nice enough to provide a downloadable registry hack to make the notifier work properly. Just extract the zip file, and double-click on the included notifier_https.reg file to turn on SSL for your notifier. There&#8217;s an included undo script as well. Download Gmail Notifier SSL script from google.com]]></description>
			<content:encoded><![CDATA[<p>Downloadable Registry <a href="http://urban.spletno-mesto.com/tag/hack/" class="st_tag internal_tag" rel="tag" title="Posts tagged with hack">Hack</a></p>
<p><a href="http://urban.spletno-mesto.com/tag/google/" class="st_tag internal_tag" rel="tag" title="Posts tagged with google">Google</a> is actually nice enough to provide a downloadable registry <a href="http://urban.spletno-mesto.com/tag/hack/" class="st_tag internal_tag" rel="tag" title="Posts tagged with hack">hack</a> to make the <a href="http://urban.spletno-mesto.com/tag/notifier/" class="st_tag internal_tag" rel="tag" title="Posts tagged with notifier">notifier</a> work properly. Just extract the zip file, and double-click on the included notifier_https.reg file to turn on SSL for your <a href="http://urban.spletno-mesto.com/tag/notifier/" class="st_tag internal_tag" rel="tag" title="Posts tagged with notifier">notifier</a>. There&#8217;s an included undo script as well.</p>
<p><a title="Gmail Notifier hack to use SSL" href="http://www.google.com/mail/help/downloads/notifier_https.zip" target="_blank">Download Gmail Notifier SSL script from google.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://urban.spletno-mesto.com/how-to-hack-gmail-notifier-to-use-ssl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

