<?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: Apache2 with Perl, PHP, Python and Ruby on Debian 5</title>
	<atom:link href="http://www.lizardking.biz/2009/03/apache2-with-perl-php-python-and-ruby-on-debian-5/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lizardking.biz/2009/03/apache2-with-perl-php-python-and-ruby-on-debian-5/</link>
	<description>for keeping track of my digital experiments</description>
	<lastBuildDate>Fri, 03 Sep 2010 16:37:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: jzerbe</title>
		<link>http://www.lizardking.biz/2009/03/apache2-with-perl-php-python-and-ruby-on-debian-5/comment-page-1/#comment-407</link>
		<dc:creator>jzerbe</dc:creator>
		<pubDate>Fri, 31 Jul 2009 16:02:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.lizardking.biz/?p=485#comment-407</guid>
		<description>for more information on the vmware virtual disks manager - http://pubs.vmware.com/server1/vm/wwhelp/wwhimpl/common/html/wwhelp.htm?context=vm&amp;file=disks_server.7.34.html#1088023</description>
		<content:encoded><![CDATA[<p>for more information on the vmware virtual disks manager &#8211; <a href="http://pubs.vmware.com/server1/vm/wwhelp/wwhimpl/common/html/wwhelp.htm?context=vm&#038;file=disks_server.7.34.html#1088023" rel="nofollow">http://pubs.vmware.com/server1/vm/wwhelp/wwhimpl/common/html/wwhelp.htm?context=vm&#038;file=disks_server.7.34.html#1088023</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jzerbe</title>
		<link>http://www.lizardking.biz/2009/03/apache2-with-perl-php-python-and-ruby-on-debian-5/comment-page-1/#comment-327</link>
		<dc:creator>jzerbe</dc:creator>
		<pubDate>Fri, 03 Apr 2009 02:25:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.lizardking.biz/?p=485#comment-327</guid>
		<description>forgot to mention, configuration to use ~60MB RAM for MySQL can be found here: &lt;a href=&quot;http://wiki.vpslink.com/Low_memory_MySQL_/_Apache_configurations&quot; rel=&quot;nofollow&quot;&gt;http://wiki.vpslink.com/Low_memory_MySQL_/_Apache_configurations&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>forgot to mention, configuration to use ~60MB RAM for MySQL can be found here: <a href="http://wiki.vpslink.com/Low_memory_MySQL_/_Apache_configurations" rel="nofollow">http://wiki.vpslink.com/Low_memory_MySQL_/_Apache_configurations</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jzerbe</title>
		<link>http://www.lizardking.biz/2009/03/apache2-with-perl-php-python-and-ruby-on-debian-5/comment-page-1/#comment-326</link>
		<dc:creator>jzerbe</dc:creator>
		<pubDate>Fri, 03 Apr 2009 02:16:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.lizardking.biz/?p=485#comment-326</guid>
		<description>well it&#039;s not like setting them to 777 is all that bad, unless the scripts in question could be used for malicious purposes. you could always try chown(ing) the directories and files in question to the www-data user (the apache daemon).
&lt;code&gt;chown www-data:www-data -R /absolute/path/to/content&lt;/code&gt;

System users can be set to be chrooted into their home directory at login on vsftpd, which is why I like setting apache to run content from users&#039; home dirs. Although, you will still have to set your scripts and whatnot to 775 or 777 depending on your system (if not chown&#039;d).</description>
		<content:encoded><![CDATA[<p>well it&#8217;s not like setting them to 777 is all that bad, unless the scripts in question could be used for malicious purposes. you could always try chown(ing) the directories and files in question to the www-data user (the apache daemon).<br />
<code>chown www-data:www-data -R /absolute/path/to/content</code></p>
<p>System users can be set to be chrooted into their home directory at login on vsftpd, which is why I like setting apache to run content from users&#8217; home dirs. Although, you will still have to set your scripts and whatnot to 775 or 777 depending on your system (if not chown&#8217;d).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan Rampersad</title>
		<link>http://www.lizardking.biz/2009/03/apache2-with-perl-php-python-and-ruby-on-debian-5/comment-page-1/#comment-325</link>
		<dc:creator>Ryan Rampersad</dc:creator>
		<pubDate>Fri, 03 Apr 2009 01:59:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.lizardking.biz/?p=485#comment-325</guid>
		<description>I followed most of the instructions here and they work fine. I&#039;m running everything out of /var/www at this point and I was wondering if changing it to be in my home directory (/home/ryan/) would fix the permission problem I&#039;m having. PHP files run fine in /var/www but pl, rb and py files throw a 500 error when run unless I change their permissions (I used chmod -R 777 ./ because I have no idea what I&#039;m doing.)

Thanks.</description>
		<content:encoded><![CDATA[<p>I followed most of the instructions here and they work fine. I&#8217;m running everything out of /var/www at this point and I was wondering if changing it to be in my home directory (/home/ryan/) would fix the permission problem I&#8217;m having. PHP files run fine in /var/www but pl, rb and py files throw a 500 error when run unless I change their permissions (I used chmod -R 777 ./ because I have no idea what I&#8217;m doing.)</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
