<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: How To Secure MAMP</title>
	<atom:link href="http://www.network0.org/2006/09/23/how-to-secure-mamp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.network0.org/2006/09/23/how-to-secure-mamp/</link>
	<description>get your geek on</description>
	<lastBuildDate>Thu, 26 Nov 2009 05:20:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: edoules</title>
		<link>http://www.network0.org/2006/09/23/how-to-secure-mamp/comment-page-1/#comment-8</link>
		<dc:creator>edoules</dc:creator>
		<pubDate>Sat, 11 Apr 2009 02:23:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.network0.org/2006/09/23/how-to-secure-mamp/#comment-8</guid>
		<description>Hi! Additional note: You&#039;ve mentioned securing the MAMP folder from external access with the use of &quot;.htaccess&quot; and &quot;.htpasswd&quot; files. An alternative way to secure this is by changing a few lines in httpd.conf as follows:

&lt;Directory &quot;/Applications/MAMP/bin/phpMyAdmin&quot;&gt;
    Options Indexes MultiViews
    AllowOverride None
    Order allow,deny
#    Allow from all
    Allow from localhost
&lt;/Directory&gt;

-- These changes start on line 620 roughly, just go through and change anything related to MAMP from &quot;Allow from all&quot; to &quot;Allow from localhost&quot; as above. Do this for each item that should not be accessible from anyone other than localhost.

Notice: Spoofing &quot;localhost&quot; would be a way to circumvent this measure. I haven&#039;t figured out how that would be accomplished though...</description>
		<content:encoded><![CDATA[<p>Hi! Additional note: You&#8217;ve mentioned securing the MAMP folder from external access with the use of &#8220;.htaccess&#8221; and &#8220;.htpasswd&#8221; files. An alternative way to secure this is by changing a few lines in httpd.conf as follows:</p>
<p>&lt;Directory &#8220;/Applications/MAMP/bin/phpMyAdmin&#8221;&gt;<br />
    Options Indexes MultiViews<br />
    AllowOverride None<br />
    Order allow,deny<br />
#    Allow from all<br />
    Allow from localhost<br />
&lt;/Directory&gt;</p>
<p>&#8211; These changes start on line 620 roughly, just go through and change anything related to MAMP from &#8220;Allow from all&#8221; to &#8220;Allow from localhost&#8221; as above. Do this for each item that should not be accessible from anyone other than localhost.</p>
<p>Notice: Spoofing &#8220;localhost&#8221; would be a way to circumvent this measure. I haven&#8217;t figured out how that would be accomplished though&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TwoKnowItAlls.com &#187; Hardening MAMP for simple, secure Wordpress hosting</title>
		<link>http://www.network0.org/2006/09/23/how-to-secure-mamp/comment-page-1/#comment-7</link>
		<dc:creator>TwoKnowItAlls.com &#187; Hardening MAMP for simple, secure Wordpress hosting</dc:creator>
		<pubDate>Sat, 08 Nov 2008 19:56:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.network0.org/2006/09/23/how-to-secure-mamp/#comment-7</guid>
		<description>[...] MySQL root password (the following instructions pertaining to the root password are adapted from network0&#8217;s excellent guide, with a few necessary changes for the current version (1.7) of MAMP).  Open a terminal and run the [...]</description>
		<content:encoded><![CDATA[<p>[...] MySQL root password (the following instructions pertaining to the root password are adapted from network0&#8217;s excellent guide, with a few necessary changes for the current version (1.7) of MAMP).  Open a terminal and run the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BeanWorks &#183; Google API&#8217;s and Mac</title>
		<link>http://www.network0.org/2006/09/23/how-to-secure-mamp/comment-page-1/#comment-6</link>
		<dc:creator>BeanWorks &#183; Google API&#8217;s and Mac</dc:creator>
		<pubDate>Mon, 06 Oct 2008 01:06:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.network0.org/2006/09/23/how-to-secure-mamp/#comment-6</guid>
		<description>[...] turns out there&#8217;s also a couple scripts to change in MAMP, documented over on network0.  There&#8217;s also a handy section on securing MAMP itself by password protecting the htaccess [...]</description>
		<content:encoded><![CDATA[<p>[...] turns out there&#8217;s also a couple scripts to change in MAMP, documented over on network0.  There&#8217;s also a handy section on securing MAMP itself by password protecting the htaccess [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Kiel</title>
		<link>http://www.network0.org/2006/09/23/how-to-secure-mamp/comment-page-1/#comment-5</link>
		<dc:creator>Eric Kiel</dc:creator>
		<pubDate>Thu, 11 Sep 2008 20:25:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.network0.org/2006/09/23/how-to-secure-mamp/#comment-5</guid>
		<description>You may want to try adding the following to the top of your root .htaccess file:

(add less than here)IfModule mod_rewrite.c(add greater than here)

RewriteEngine On

RewriteBase /

RewriteCond %{REQUEST_URI} ^/(stats&#124;failed_auth\.html).*$ [NC]

RewriteRule . - [L]

(add less than here)/IfModule(add greater than here)

Also you could move the site you want displayed out of /Applications/MAMP/htdocs (I think that is the location if I remember correctly.)</description>
		<content:encoded><![CDATA[<p>You may want to try adding the following to the top of your root .htaccess file:</p>
<p>(add less than here)IfModule mod_rewrite.c(add greater than here)</p>
<p>RewriteEngine On</p>
<p>RewriteBase /</p>
<p>RewriteCond %{REQUEST_URI} ^/(stats|failed_auth\.html).*$ [NC]</p>
<p>RewriteRule . &#8211; [L]</p>
<p>(add less than here)/IfModule(add greater than here)</p>
<p>Also you could move the site you want displayed out of /Applications/MAMP/htdocs (I think that is the location if I remember correctly.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: B Adams</title>
		<link>http://www.network0.org/2006/09/23/how-to-secure-mamp/comment-page-1/#comment-4</link>
		<dc:creator>B Adams</dc:creator>
		<pubDate>Thu, 11 Sep 2008 20:03:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.network0.org/2006/09/23/how-to-secure-mamp/#comment-4</guid>
		<description>Putting an .htaccess file in did, indeed, make the localhost/MAMP section inaccessible without a password. However, it also made the entirety of localhost/ similarly password protected! I thought this might be remedied by putting an overriding .htaccess into /Applications/MAMP/htdocs which essentially said &quot;Don&#039;t bother with passwords anymore&quot;, but haven&#039;t had any luck on that front.

Any tips on how to secure the localhost/MAMP page without doing the same to the rest of localhost?</description>
		<content:encoded><![CDATA[<p>Putting an .htaccess file in did, indeed, make the localhost/MAMP section inaccessible without a password. However, it also made the entirety of localhost/ similarly password protected! I thought this might be remedied by putting an overriding .htaccess into /Applications/MAMP/htdocs which essentially said &#8220;Don&#8217;t bother with passwords anymore&#8221;, but haven&#8217;t had any luck on that front.</p>
<p>Any tips on how to secure the localhost/MAMP page without doing the same to the rest of localhost?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Kiel</title>
		<link>http://www.network0.org/2006/09/23/how-to-secure-mamp/comment-page-1/#comment-3</link>
		<dc:creator>Eric Kiel</dc:creator>
		<pubDate>Thu, 11 Sep 2008 15:32:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.network0.org/2006/09/23/how-to-secure-mamp/#comment-3</guid>
		<description>I imagine it would be, but a concern might be that the server has to be logged in as the user running MAMP at all times for it to run.</description>
		<content:encoded><![CDATA[<p>I imagine it would be, but a concern might be that the server has to be logged in as the user running MAMP at all times for it to run.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy Day</title>
		<link>http://www.network0.org/2006/09/23/how-to-secure-mamp/comment-page-1/#comment-2</link>
		<dc:creator>Andy Day</dc:creator>
		<pubDate>Thu, 11 Sep 2008 15:17:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.network0.org/2006/09/23/how-to-secure-mamp/#comment-2</guid>
		<description>After following your instructions is MAMP suitable for a large projected on Leopard Server?

I&#039;ve found the build in Server is lacking many essential modules.</description>
		<content:encoded><![CDATA[<p>After following your instructions is MAMP suitable for a large projected on Leopard Server?</p>
<p>I&#8217;ve found the build in Server is lacking many essential modules.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 1.360 seconds -->
