<?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>Kurinchi Blogger Scribbles ... &#187; Configuration error</title>
	<atom:link href="http://kurinchilamp.kurinchilion.com/tag/configuration-error/feed" rel="self" type="application/rss+xml" />
	<link>http://kurinchilamp.kurinchilion.com</link>
	<description>On Open Source Technologies</description>
	<lastBuildDate>Mon, 02 Jan 2012 06:14:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>How to find if mod_rewrite is enabled in Apache server?</title>
		<link>http://kurinchilamp.kurinchilion.com/2009/01/how-to-find-if-mod_rewrite-is-enabled-in-apache-server.html</link>
		<comments>http://kurinchilamp.kurinchilion.com/2009/01/how-to-find-if-mod_rewrite-is-enabled-in-apache-server.html#comments</comments>
		<pubDate>Fri, 09 Jan 2009 01:13:31 +0000</pubDate>
		<dc:creator>kurinchilamp</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[LINUX]]></category>
		<category><![CDATA[Linux Server]]></category>
		<category><![CDATA[Tips, Tricks, Guides]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[Apache installation]]></category>
		<category><![CDATA[Configuration error]]></category>
		<category><![CDATA[Linux tips]]></category>
		<category><![CDATA[linux tricks]]></category>
		<category><![CDATA[mod_rewrite]]></category>

		<guid isPermaLink="false">http://kurinchilamp.kurinchilion.com/?p=108</guid>
		<description><![CDATA[Different hosting locations have different settings for mod_rewrrite module. In some locations it is turned ON by default and for some it isn&#8217;t. If you are hosting your application in your local host or on a dedicated server, then it is a matter of editing httpd.conf file within Apache server folder. Ensure that LoadModule rewrite_module [...]]]></description>
			<content:encoded><![CDATA[<p>Different hosting locations have different settings for <strong>mod_rewrrite</strong> module. In some locations it is turned ON by default and for some it isn&#8217;t. </p>
<p>If you are hosting your application in your local host or on a dedicated server, then it is a matter of editing <strong>httpd.conf </strong>file within Apache server folder. Ensure that <span id="more-108"></span></p>
<p><strong>LoadModule rewrite_module modules/mod_rewrite.so </strong></p>
<p>is NOT commented inside httpd.conf file. In apache, # (pound sign) is used to comment text. So you need to remove the # sign if it appears before the above statement. Then again check if the following line is also not commented.</p>
<p><strong>AddModule mod_rewrite.c</strong></p>
<p>Once that is done, save the file and restart apache server for the changes to take place. </p>
<p>If you were hosting your applications in a web server where you don&#8217;t have access to its internal settings, you can test if mod_rewrite is turned on/off by the following ways:</p>
<p><strong>Test 1:</strong><br />
Easiest way to test if mod_rewrite is ON/OFF is to create a php info file</p>
<p><em><?php</p>
<p>phpinfo();</p>
<p>?></em></p>
<p>Under &#8220;apache2handler&#8221; check for &#8220;Loaded Modules&#8221; section. There will be a list of loaded modules. Check if mod_rewrite is present in the list.</p>
<p><strong>Test 2:</strong><br />
By creating a file called .htaccess and then by typing the following lines in it</p>
<p><em>Options +FollowSymLinks<br />
RewriteEngine On</em></p>
<p>Save the file. If you had created a virtual site &#8220;abc&#8221;, you need to save <em>.htaccess</em> file inside <em>/abc</em> folder. Then access the site by entering <em>http://domain.com/abc</em>. If mod_rewrite is ON, then you will not get any error in the display else, you will be getting <strong>&#8220;Server Error &#8211; 500&#8243;</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://kurinchilamp.kurinchilion.com/2009/01/how-to-find-if-mod_rewrite-is-enabled-in-apache-server.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenVPN Linux CentOS installation &#8211; Part 2</title>
		<link>http://kurinchilamp.kurinchilion.com/2008/12/openvpn-linux-centos-installation-part-2.html</link>
		<comments>http://kurinchilamp.kurinchilion.com/2008/12/openvpn-linux-centos-installation-part-2.html#comments</comments>
		<pubDate>Sun, 07 Dec 2008 18:52:56 +0000</pubDate>
		<dc:creator>kurinchiblogger</dc:creator>
				<category><![CDATA[Linux Server]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Client Configuration]]></category>
		<category><![CDATA[Configuration error]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[LINUX]]></category>
		<category><![CDATA[OpenVPN]]></category>
		<category><![CDATA[Steps OpenVPN client configuration]]></category>

		<guid isPermaLink="false">http://kurinchiblogger.wordpress.com/?p=26</guid>
		<description><![CDATA[Part 2 - Making OpenVPN work as a Client When we want to connect to Office network from an external location or from home, then we need to setup our Linux box to establish communication with the server at the office via a secured link over the internet. In this part, I will list down the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Part 2 - Making OpenVPN work as a Client </strong></p>
<p>When we want to connect to Office network from an external location or from home, then we need to setup our Linux box to establish communication with the server at the office via a secured link over the internet. In this part, I will list down the steps needed to establish a client communication.<span id="more-26"></span></p>
<p>For you to connect to your Office network where VPN is installed, your server administrator would have given you the following files:</p>
<p>- a .csr file (like for e.g. yourname.csr)<br />
- a .crt file (like for e.g. yourname.crt)<br />
- a .key file (like for e.g. yourname.key)<br />
- a .conf file (like for e.g. yourname.conf)</p>
<p><strong>A sample &lt;&lt;yourname.conf&gt;&gt; file:</strong></p>
<p>[root@computer /]# vi yourname.conf</p>
<p><strong>#yourname.conf<br />
</strong>tls-client<br />
client<br />
dev tun<br />
proto udp<br />
tun-mtu 1400<br />
remote <strong>vpn_server_ip_address</strong> 1194<br />
resolv-retry infinite<br />
nobind<br />
persist-key<br />
persist-tun<br />
ca /etc/openvpn/ca.crt<br />
cert /etc/openvpn/yourname.crt<br />
key /etc/openvpn/yourname.key<br />
cipher BF-CBC<br />
comp-lzo<br />
verb 3</p>
<p>As you can see from the above file, you need to COPY the file &lt;&lt;yourname.csr&gt;&gt;, &lt;&lt;yourname.crt&gt;&gt;, &lt;&lt;yourname.key&gt;&gt;, &lt;&lt;yourname.conf&gt;&gt; to the location <strong>/etc/openvpn/. </strong>If you want to setup a different folder for having these files separately, then give the appropriate path inside &lt;&lt;yourname.conf&gt;&gt; file.</p>
<p>Inside &lt;&lt;yourname.conf&gt;&gt; file, replace <strong>vpn_server_ip_address</strong> with the IP address given by your server administrator.</p>
<p>Now you are good to go. Issue the command</p>
<p>[root@computer /]# openvpn &#8211;config yourname.conf</p>
<p>Once the connection is established you will get a line stating that &#8220;Initialization sequence completed&#8221; which signals that client communication with the remote location is instantiated. Now you can browse through the files in the remote server wherever you are.</p>
<p>Notes:<br />
- Inside &lt;&lt;yourname.conf&gt;&gt;  file, DO NOT have ~ (tilde) mark to signify the root. This is not recognized from within the .conf file and it will return an error.<br />
- Check the line that states &#8216;cipher&#8217; in &lt;&lt;yourname.conf&gt;&gt;. Here I have stated that BF-CBC as my 128 bit cypher encryption algorithm for establishing my connection. Depending on the information given by your server admin, you may need to change this part.</p>
]]></content:encoded>
			<wfw:commentRss>http://kurinchilamp.kurinchilion.com/2008/12/openvpn-linux-centos-installation-part-2.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

