<?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>iExpert Ltd &#187; Software Security</title>
	<atom:link href="http://www.iexpert.biz/archives/category/software-security/feed" rel="self" type="application/rss+xml" />
	<link>http://www.iexpert.biz</link>
	<description></description>
	<lastBuildDate>Tue, 25 May 2010 02:41:20 +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 do I set up Apache to allow access to certain documents only if a site is either a local site or the user supplies a password and username?</title>
		<link>http://www.iexpert.biz/archives/284?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-do-i-set-up-apache-to-allow-access-to-certain-documents-only-if-a-site-is-either-a-local-site-or-the-user-supplies-a-password-and-username</link>
		<comments>http://www.iexpert.biz/archives/284#comments</comments>
		<pubDate>Wed, 30 Dec 2009 22:49:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software Security]]></category>

		<guid isPermaLink="false">http://www.iexpert.biz/?p=284</guid>
		<description><![CDATA[

Use the Satisfy directive, in particular the Satisfy Any directive, to require that only one of the access restrictions be met. For example, adding the following configuration to a .htaccess or server configuration file would restrict access to people who either are accessing the site from a host under domain.com or who can supply a valid username and [...]]]></description>
			<content:encoded><![CDATA[<p><strong><br />
</strong></p>
<p>Use the <a href="http://httpd.apache.org/docs/1.3/mod/core.html#satisfy">Satisfy</a> directive, in particular the <code>Satisfy Any</code> directive, to require that only one of the access restrictions be met. For example, adding the following configuration to a <samp>.htaccess</samp> or server configuration file would restrict access to people who either are accessing the site from a host under domain.com or who can supply a valid username and password:</p>
<dl>
<dd><code>Deny from all<br />
Allow from .domain.com<br />
AuthType Basic<br />
AuthUserFile /usr/local/apache/conf/htpasswd.users<br />
AuthName "special directory"<br />
Require valid-user<br />
Satisfy any</code></dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://www.iexpert.biz/archives/284/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
