<?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: nWeb</title>
	<atom:link href="http://thehook.eu/tools/nweb/feed/" rel="self" type="application/rss+xml" />
	<link>http://thehook.eu</link>
	<description>My digital playground</description>
	<lastBuildDate>Sat, 07 Apr 2012 09:42:31 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: nginx mit Hilfe von nWeb installieren &#124; Acsiii.Net</title>
		<link>http://thehook.eu/tools/nweb/comment-page-1/#comment-10213</link>
		<dc:creator>nginx mit Hilfe von nWeb installieren &#124; Acsiii.Net</dc:creator>
		<pubDate>Sun, 12 Feb 2012 02:05:29 +0000</pubDate>
		<guid isPermaLink="false">http://thehook.eu/?page_id=21#comment-10213</guid>
		<description>[...] wurde das Shell Script von thehook.eu die in ihren Atikel zu nWeb darauf hinweisen dass das Script den auf Linux Systemen Ubuntu 9.04 (und höher) &amp; [...]</description>
		<content:encoded><![CDATA[<p>[...] wurde das Shell Script von thehook.eu die in ihren Atikel zu nWeb darauf hinweisen dass das Script den auf Linux Systemen Ubuntu 9.04 (und höher) &amp; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andre</title>
		<link>http://thehook.eu/tools/nweb/comment-page-1/#comment-1141</link>
		<dc:creator>Andre</dc:creator>
		<pubDate>Mon, 24 May 2010 20:12:11 +0000</pubDate>
		<guid isPermaLink="false">http://thehook.eu/?page_id=21#comment-1141</guid>
		<description>Hi David,

the script is working on 10.04 as well using the -nocheck attribute..

I will release a new version at the end of the summer I hope, but I am really busy with a lot of other projects right now..

Everyone is free to help develop the script, so if someone have time to look into it I will upload the changes :-)</description>
		<content:encoded><![CDATA[<p>Hi David,</p>
<p>the script is working on 10.04 as well using the -nocheck attribute..</p>
<p>I will release a new version at the end of the summer I hope, but I am really busy with a lot of other projects right now..</p>
<p>Everyone is free to help develop the script, so if someone have time to look into it I will upload the changes <img src='http://thehook.eu/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://thehook.eu/tools/nweb/comment-page-1/#comment-1131</link>
		<dc:creator>David</dc:creator>
		<pubDate>Sat, 22 May 2010 20:01:10 +0000</pubDate>
		<guid isPermaLink="false">http://thehook.eu/?page_id=21#comment-1131</guid>
		<description>Worked great on 9.10. Can you update the script for Ubuntu 10.04 now that it&#039;s out?</description>
		<content:encoded><![CDATA[<p>Worked great on 9.10. Can you update the script for Ubuntu 10.04 now that it&#8217;s out?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Srirang</title>
		<link>http://thehook.eu/tools/nweb/comment-page-1/#comment-1075</link>
		<dc:creator>Srirang</dc:creator>
		<pubDate>Thu, 29 Apr 2010 04:56:38 +0000</pubDate>
		<guid isPermaLink="false">http://thehook.eu/?page_id=21#comment-1075</guid>
		<description>Thank you very much for the script.

I wanted to know if the tasks can be done selectively. Like, is it possible to just install nginx and php and configure nginx for php. And may be at a later stage I could install MySql and FastCGI. Can the script be easily modified to do that?

Regards,
Srirang
(Brahmana)</description>
		<content:encoded><![CDATA[<p>Thank you very much for the script.</p>
<p>I wanted to know if the tasks can be done selectively. Like, is it possible to just install nginx and php and configure nginx for php. And may be at a later stage I could install MySql and FastCGI. Can the script be easily modified to do that?</p>
<p>Regards,<br />
Srirang<br />
(Brahmana)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: netexr</title>
		<link>http://thehook.eu/tools/nweb/comment-page-1/#comment-1023</link>
		<dc:creator>netexr</dc:creator>
		<pubDate>Tue, 13 Apr 2010 13:57:03 +0000</pubDate>
		<guid isPermaLink="false">http://thehook.eu/?page_id=21#comment-1023</guid>
		<description>suggest make php-fastcgi as a service item, so we can start,stop and restart by ourself.

below is the file: /etc/init.d/php-fastcig used in my 512M memory VPS:

&quot;PATH=/sbin:/bin:/usr/sbin:/usr/bin

case &quot;$1&quot; in
start)
# Start.
echo -n &quot;Starting $DESC: ... &quot;
/usr/local/bin/spawn-fcgi -a 127.0.0.1 -p 9000 -C 8 -u www-data -g www-data -f &quot;/usr/bin/php5-cgi -d /var/www&quot;
echo &quot;done&quot;
;;
stop)
# Stop.
echo -n &quot;Shutting down $DESC: ... &quot;
killall -9 php5-cgi
echo &quot;done&quot;
;;
restart)
# Restart.
$0 stop
sleep 1
$0 start
;;
*)
echo &quot;Usage: php5-fastcgi {start&#124;stop&#124;restart}&quot;
exit 1
;;
esac
exit 0 &quot;</description>
		<content:encoded><![CDATA[<p>suggest make php-fastcgi as a service item, so we can start,stop and restart by ourself.</p>
<p>below is the file: /etc/init.d/php-fastcig used in my 512M memory VPS:</p>
<p>&#8220;PATH=/sbin:/bin:/usr/sbin:/usr/bin</p>
<p>case &#8220;$1&#8243; in<br />
start)<br />
# Start.<br />
echo -n &#8220;Starting $DESC: &#8230; &#8221;<br />
/usr/local/bin/spawn-fcgi -a 127.0.0.1 -p 9000 -C 8 -u www-data -g www-data -f &#8220;/usr/bin/php5-cgi -d /var/www&#8221;<br />
echo &#8220;done&#8221;<br />
;;<br />
stop)<br />
# Stop.<br />
echo -n &#8220;Shutting down $DESC: &#8230; &#8221;<br />
killall -9 php5-cgi<br />
echo &#8220;done&#8221;<br />
;;<br />
restart)<br />
# Restart.<br />
$0 stop<br />
sleep 1<br />
$0 start<br />
;;<br />
*)<br />
echo &#8220;Usage: php5-fastcgi {start|stop|restart}&#8221;<br />
exit 1<br />
;;<br />
esac<br />
exit 0 &#8220;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andre</title>
		<link>http://thehook.eu/tools/nweb/comment-page-1/#comment-1017</link>
		<dc:creator>Andre</dc:creator>
		<pubDate>Sun, 11 Apr 2010 22:47:24 +0000</pubDate>
		<guid isPermaLink="false">http://thehook.eu/?page_id=21#comment-1017</guid>
		<description>Thanks for your feedback! The main reason has been to remain backward compatible, spawn-fcgi is now split apart from lighttpd and only the newest version(s) of Ubuntu has a package for spawn-fcgi.

Don&#039;t hesitate to give me feedback / suggestions for the next version, it&#039;s been a long time and probably will be some more but I&#039;m expecting to update/rewrite the script sometime towards the summer.</description>
		<content:encoded><![CDATA[<p>Thanks for your feedback! The main reason has been to remain backward compatible, spawn-fcgi is now split apart from lighttpd and only the newest version(s) of Ubuntu has a package for spawn-fcgi.</p>
<p>Don&#8217;t hesitate to give me feedback / suggestions for the next version, it&#8217;s been a long time and probably will be some more but I&#8217;m expecting to update/rewrite the script sometime towards the summer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Snake Man</title>
		<link>http://thehook.eu/tools/nweb/comment-page-1/#comment-1015</link>
		<dc:creator>Snake Man</dc:creator>
		<pubDate>Sun, 11 Apr 2010 14:02:33 +0000</pubDate>
		<guid isPermaLink="false">http://thehook.eu/?page_id=21#comment-1015</guid>
		<description>Hi, thanks for your effort! One question: why do you compile spawn-fcgi and do not use packages provided with the distros? Are there any problems with the spawn-fdgi packages that come with debian / ubuntu? Thanks!</description>
		<content:encoded><![CDATA[<p>Hi, thanks for your effort! One question: why do you compile spawn-fcgi and do not use packages provided with the distros? Are there any problems with the spawn-fdgi packages that come with debian / ubuntu? Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nginx mit PHP, MySQL &#38; phpMyAdmin unter Ubuntu 9.10 &#171; The Hell Needs Me</title>
		<link>http://thehook.eu/tools/nweb/comment-page-1/#comment-974</link>
		<dc:creator>Nginx mit PHP, MySQL &#38; phpMyAdmin unter Ubuntu 9.10 &#171; The Hell Needs Me</dc:creator>
		<pubDate>Mon, 05 Apr 2010 01:23:09 +0000</pubDate>
		<guid isPermaLink="false">http://thehook.eu/?page_id=21#comment-974</guid>
		<description>[...] kann mit dem &#8220;nWeb&#8221; Bash Script PHP &amp; MySQL automatisch installiert und für den Nginx konfiguriert [...]</description>
		<content:encoded><![CDATA[<p>[...] kann mit dem &#8220;nWeb&#8221; Bash Script PHP &amp; MySQL automatisch installiert und für den Nginx konfiguriert [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://thehook.eu/tools/nweb/comment-page-1/#comment-901</link>
		<dc:creator>David</dc:creator>
		<pubDate>Thu, 25 Mar 2010 03:45:22 +0000</pubDate>
		<guid isPermaLink="false">http://thehook.eu/?page_id=21#comment-901</guid>
		<description>Thanks for taking the time to compile this script. I wanted to try nginx but the lack of native support for PHP and the whole compiling and configuring spawn-fcgi is a bit much for me right now.

Thanks to you I can skip all that nasty stuff and jump straight to trying nginx out.</description>
		<content:encoded><![CDATA[<p>Thanks for taking the time to compile this script. I wanted to try nginx but the lack of native support for PHP and the whole compiling and configuring spawn-fcgi is a bit much for me right now.</p>
<p>Thanks to you I can skip all that nasty stuff and jump straight to trying nginx out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andre</title>
		<link>http://thehook.eu/tools/nweb/comment-page-1/#comment-884</link>
		<dc:creator>Andre</dc:creator>
		<pubDate>Mon, 15 Mar 2010 15:32:13 +0000</pubDate>
		<guid isPermaLink="false">http://thehook.eu/?page_id=21#comment-884</guid>
		<description>I have never had any problems running it, but Mark commented above that his Sheevaplug couldn&#039;t handle it.

The smallest system i have ran it on was a first generation eeePC, and it is still running today as a web-, print-, and fileserver with nginx as a base.</description>
		<content:encoded><![CDATA[<p>I have never had any problems running it, but Mark commented above that his Sheevaplug couldn&#8217;t handle it.</p>
<p>The smallest system i have ran it on was a first generation eeePC, and it is still running today as a web-, print-, and fileserver with nginx as a base.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

