<?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>Ruby On Rails Blog &#187; security</title>
	<atom:link href="http://www.mendable.com/tag/security/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mendable.com</link>
	<description>Mendable.com - Essential Reading for Ruby on Rails Developers</description>
	<lastBuildDate>Tue, 27 Jul 2010 19:38:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to protect a folder by IP address in Nginx</title>
		<link>http://www.mendable.com/how-to-protect-a-folder-by-ip-address-in-nginx/</link>
		<comments>http://www.mendable.com/how-to-protect-a-folder-by-ip-address-in-nginx/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 19:51:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[nginx]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.mendable.com/?p=113</guid>
		<description><![CDATA[To protect a folder by IP address in nginx is fairly simple, see the example below that demonstrates only allowing access to the /protected folder for people in the 192.168.0.* network.
server {
  ....
  location /protected {
    allow 192.168.0.0/24;
    deny all;
  }
  ...
}
]]></description>
		<wfw:commentRss>http://www.mendable.com/how-to-protect-a-folder-by-ip-address-in-nginx/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
