<?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: An Ubuntu VPS on Slicehost: Web Server</title>
	<atom:link href="http://pig-monkey.com/2008/06/10/an-ubuntu-vps-on-slicehost-web-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://pig-monkey.com/2008/06/10/an-ubuntu-vps-on-slicehost-web-server/</link>
	<description>passages from the Fourth World</description>
	<lastBuildDate>Wed, 17 Mar 2010 22:05:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Kevin</title>
		<link>http://pig-monkey.com/2008/06/10/an-ubuntu-vps-on-slicehost-web-server/comment-page-1/#comment-40519</link>
		<dc:creator>Kevin</dc:creator>
		<pubDate>Sun, 18 Oct 2009 18:57:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.pig-monkey.com/?p=1409#comment-40519</guid>
		<description>Discovered an option for spawn-fcgi while I was fiddling with permissions on files. Give it &quot;-g www-data&quot; (run as group www-data) which avoids the need to have files readable by all users on the system. Makes me feel better not having stuff readable to anyone who I may give access to the server.</description>
		<content:encoded><![CDATA[<p>Discovered an option for spawn-fcgi while I was fiddling with permissions on files. Give it &#8220;-g www-data&#8221; (run as group www-data) which avoids the need to have files readable by all users on the system. Makes me feel better not having stuff readable to anyone who I may give access to the server.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carlo</title>
		<link>http://pig-monkey.com/2008/06/10/an-ubuntu-vps-on-slicehost-web-server/comment-page-1/#comment-26404</link>
		<dc:creator>Carlo</dc:creator>
		<pubDate>Wed, 16 Jul 2008 19:22:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.pig-monkey.com/?p=1409#comment-26404</guid>
		<description>Hi,
I wrote an email by your contact form, please read it.

Bye

Carlo</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I wrote an email by your contact form, please read it.</p>
<p>Bye</p>
<p>Carlo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pig Monkey</title>
		<link>http://pig-monkey.com/2008/06/10/an-ubuntu-vps-on-slicehost-web-server/comment-page-1/#comment-26322</link>
		<dc:creator>Pig Monkey</dc:creator>
		<pubDate>Mon, 14 Jul 2008 20:25:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.pig-monkey.com/?p=1409#comment-26322</guid>
		<description>It looks like you don&#039;t have an index.php, which is why trying to go to it results in the 404 error. You have an &lt;a href=&quot;http://www.evaskiva.com/index.html&quot; rel=&quot;nofollow&quot;&gt;index.html&lt;/a&gt;. That&#039;s why going to the domain &lt;a href=&quot;http://www.evaskiva.com&quot; rel=&quot;nofollow&quot;&gt;without specifying a file&lt;/a&gt; takes you to the index.html, even though in the nginx config you specify index.php before index.html on the index line.</description>
		<content:encoded><![CDATA[<p>It looks like you don&#8217;t have an index.php, which is why trying to go to it results in the 404 error. You have an <a href="http://www.evaskiva.com/index.html" rel="nofollow">index.html</a>. That&#8217;s why going to the domain <a href="http://www.evaskiva.com" rel="nofollow">without specifying a file</a> takes you to the index.html, even though in the nginx config you specify index.php before index.html on the index line.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carlo</title>
		<link>http://pig-monkey.com/2008/06/10/an-ubuntu-vps-on-slicehost-web-server/comment-page-1/#comment-26318</link>
		<dc:creator>Carlo</dc:creator>
		<pubDate>Mon, 14 Jul 2008 17:51:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.pig-monkey.com/?p=1409#comment-26318</guid>
		<description>No problem, you are very kindly ...

Vhost is:

server {

            listen   80;
            server_name  www.evaskiva.com;
            rewrite ^/(.*) http://evaskiva.com permanent;

           }


server {

            listen   80;
            server_name evaskiva.com;

            access_log /home/zenobox/public_html/evaskiva.com/log/access.log;
            error_log /home/zenobox/public_html/evaskiva.com/log/error.log;

            location / {

                        root   /home/zenobox/public_html/evaskiva.com/public/;
                        index  index.php index.html index.htm;

                        }

        location ~ \.php$ {

           fastcgi_pass   127.0.0.1:9000;
           fastcgi_index  index.php;
          fastcgi_param  SCRIPT_FILENAME  /home/zenobox/public_html/evaskiva.com/public$fastcgi_script_name;
          include        /etc/nginx/fastcgi.conf;

        }

            }


Bye

Carlo</description>
		<content:encoded><![CDATA[<p>No problem, you are very kindly &#8230;</p>
<p>Vhost is:</p>
<p>server {</p>
<p>            listen   80;<br />
            server_name  <a href="http://www.evaskiva.com" rel="nofollow">http://www.evaskiva.com</a>;<br />
            rewrite ^/(.*) <a href="http://evaskiva.com" rel="nofollow">http://evaskiva.com</a> permanent;</p>
<p>           }</p>
<p>server {</p>
<p>            listen   80;<br />
            server_name evaskiva.com;</p>
<p>            access_log /home/zenobox/public_html/evaskiva.com/log/access.log;<br />
            error_log /home/zenobox/public_html/evaskiva.com/log/error.log;</p>
<p>            location / {</p>
<p>                        root   /home/zenobox/public_html/evaskiva.com/public/;<br />
                        index  index.php index.html index.htm;</p>
<p>                        }</p>
<p>        location ~ \.php$ {</p>
<p>           fastcgi_pass   127.0.0.1:9000;<br />
           fastcgi_index  index.php;<br />
          fastcgi_param  SCRIPT_FILENAME  /home/zenobox/public_html/evaskiva.com/public$fastcgi_script_name;<br />
          include        /etc/nginx/fastcgi.conf;</p>
<p>        }</p>
<p>            }</p>
<p>Bye</p>
<p>Carlo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pig Monkey</title>
		<link>http://pig-monkey.com/2008/06/10/an-ubuntu-vps-on-slicehost-web-server/comment-page-1/#comment-26311</link>
		<dc:creator>Pig Monkey</dc:creator>
		<pubDate>Mon, 14 Jul 2008 14:38:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.pig-monkey.com/?p=1409#comment-26311</guid>
		<description>Care to post (or email me if you don&#039;t want it public) your nginx server block for the vhost?</description>
		<content:encoded><![CDATA[<p>Care to post (or email me if you don&#8217;t want it public) your nginx server block for the vhost?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carlo</title>
		<link>http://pig-monkey.com/2008/06/10/an-ubuntu-vps-on-slicehost-web-server/comment-page-1/#comment-26310</link>
		<dc:creator>Carlo</dc:creator>
		<pubDate>Mon, 14 Jul 2008 14:32:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.pig-monkey.com/?p=1409#comment-26310</guid>
		<description>Hi,
I know You cannot help me without specific infos, but I try anyway excuse me.
Well ... I followed all your instructions:
1) I installed Nginx web server, mysql and php
2) I configured Nginx and vhost following SliceHost guides
3) I installed spawn-fcgi and I followed all your info (by copy and paste into my SSH connection)
4) I restart (well ... stop and start) Nginx
5) I create a index.php file that I put in /home/zenobox/public_html/evaskiva.com/public
I&#039;m so sure to complete all procedure in a correct way.
But when I point my browser on http://www.evaskiva.com/index.php (or without index.php) the reposne is 404 not found ... try yourself ...
The server is running try http://209.20.69.80/
What can I make wrong ?
I know it&#039;s not easy but can you help me ?
Thanks</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I know You cannot help me without specific infos, but I try anyway excuse me.<br />
Well &#8230; I followed all your instructions:<br />
1) I installed Nginx web server, mysql and php<br />
2) I configured Nginx and vhost following SliceHost guides<br />
3) I installed spawn-fcgi and I followed all your info (by copy and paste into my SSH connection)<br />
4) I restart (well &#8230; stop and start) Nginx<br />
5) I create a index.php file that I put in /home/zenobox/public_html/evaskiva.com/public<br />
I&#8217;m so sure to complete all procedure in a correct way.<br />
But when I point my browser on <a href="http://www.evaskiva.com/index.php" rel="nofollow">http://www.evaskiva.com/index.php</a> (or without index.php) the reposne is 404 not found &#8230; try yourself &#8230;<br />
The server is running try <a href="http://209.20.69.80/" rel="nofollow">http://209.20.69.80/</a><br />
What can I make wrong ?<br />
I know it&#8217;s not easy but can you help me ?<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pig Monkey</title>
		<link>http://pig-monkey.com/2008/06/10/an-ubuntu-vps-on-slicehost-web-server/comment-page-1/#comment-26284</link>
		<dc:creator>Pig Monkey</dc:creator>
		<pubDate>Sun, 13 Jul 2008 18:59:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.pig-monkey.com/?p=1409#comment-26284</guid>
		<description>@ Carlo:
I don&#039;t use phpmyadmin, but you should be able to just install it in one directory, then put an alias under the server block of each of your vhosts in your nginx config, &lt;a href=&quot;http://articles.slicehost.com/2008/5/16/ubuntu-hardy-nginx-virtual-host-settings&quot; rel=&quot;nofollow&quot;&gt;as Slicehost explains in this article under the &quot;alias&quot; heading&lt;/a&gt;. Another option would be to symlink it from one directory to the public html folder of each of your vhosts.

@ Kevin:
Thanks! Fixed.</description>
		<content:encoded><![CDATA[<p>@ Carlo:<br />
I don&#8217;t use phpmyadmin, but you should be able to just install it in one directory, then put an alias under the server block of each of your vhosts in your nginx config, <a href="http://articles.slicehost.com/2008/5/16/ubuntu-hardy-nginx-virtual-host-settings" rel="nofollow">as Slicehost explains in this article under the &#8220;alias&#8221; heading</a>. Another option would be to symlink it from one directory to the public html folder of each of your vhosts.</p>
<p>@ Kevin:<br />
Thanks! Fixed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin</title>
		<link>http://pig-monkey.com/2008/06/10/an-ubuntu-vps-on-slicehost-web-server/comment-page-1/#comment-26279</link>
		<dc:creator>Kevin</dc:creator>
		<pubDate>Sun, 13 Jul 2008 17:04:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.pig-monkey.com/?p=1409#comment-26279</guid>
		<description>Noticed a slight flaw in your instructions. In the bit about compiling Lighthttpd, cd lighttpd-1.4.18.tar.gz
 should be replaced with cd lighttpd-1.4.19</description>
		<content:encoded><![CDATA[<p>Noticed a slight flaw in your instructions. In the bit about compiling Lighthttpd, cd lighttpd-1.4.18.tar.gz<br />
 should be replaced with cd lighttpd-1.4.19</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carlo</title>
		<link>http://pig-monkey.com/2008/06/10/an-ubuntu-vps-on-slicehost-web-server/comment-page-1/#comment-26277</link>
		<dc:creator>Carlo</dc:creator>
		<pubDate>Sun, 13 Jul 2008 16:39:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.pig-monkey.com/?p=1409#comment-26277</guid>
		<description>Hi,
Thank you very much for your tutorial. I ask how to install and configure PhpMyAdmin to run under all vhosts, with only one installation.
Can you help ?
Tanks
Carlo</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Thank you very much for your tutorial. I ask how to install and configure PhpMyAdmin to run under all vhosts, with only one installation.<br />
Can you help ?<br />
Tanks<br />
Carlo</p>
]]></content:encoded>
	</item>
</channel>
</rss>
