<?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>Комментарии: nginx Compatibility</title>
	<atom:link href="http://blog.sjinks.pro/wordpress-plugins/nginx-compatibility/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sjinks.pro</link>
	<description>Quod scripsi, scripsi</description>
	<lastBuildDate>Wed, 08 Feb 2012 14:51:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Автор: Vladimir</title>
		<link>http://blog.sjinks.pro/wordpress-plugins/nginx-compatibility/comment-page-4/#comment-560203</link>
		<dc:creator>Vladimir</dc:creator>
		<pubDate>Thu, 26 Jan 2012 13:14:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sjinks.pro/?page_id=543#comment-560203</guid>
		<description>Hi Robert,

I am afraid your &lt;code&gt;try_files&lt;/code&gt; directive is incorrect.

Please take a look: http://wordpress.org/extend/plugins/nginx-compatibility/other_notes/</description>
		<content:encoded><![CDATA[<p>Hi Robert,</p>
<p>I am afraid your <code>try_files</code> directive is incorrect.</p>
<p>Please take a look: <a href="http://wordpress.org/extend/plugins/nginx-compatibility/other_notes/" rel="nofollow">http://wordpress.org/extend/plugins/nginx-compatibility/other_notes/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Автор: Robert</title>
		<link>http://blog.sjinks.pro/wordpress-plugins/nginx-compatibility/comment-page-4/#comment-560024</link>
		<dc:creator>Robert</dc:creator>
		<pubDate>Thu, 26 Jan 2012 11:04:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sjinks.pro/?page_id=543#comment-560024</guid>
		<description>Hi Vladimir,

I can&#039;t get your plugin running. WP doesn&#039;t seem to install it properly. I also run into failures messages when trying to update my plugins.

Any ideas or suggestions? 

My url rewrite syntax goes like:

 try_files $uri $uri/ /index.php?q=$uri&amp;$args;</description>
		<content:encoded><![CDATA[<p>Hi Vladimir,</p>
<p>I can&#8217;t get your plugin running. WP doesn&#8217;t seem to install it properly. I also run into failures messages when trying to update my plugins.</p>
<p>Any ideas or suggestions? </p>
<p>My url rewrite syntax goes like:</p>
<p> try_files $uri $uri/ /index.php?q=$uri&amp;$args;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Автор: Vladimir</title>
		<link>http://blog.sjinks.pro/wordpress-plugins/nginx-compatibility/comment-page-4/#comment-432275</link>
		<dc:creator>Vladimir</dc:creator>
		<pubDate>Thu, 17 Nov 2011 13:43:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sjinks.pro/?page_id=543#comment-432275</guid>
		<description>nginx как замена Apache.

Вместо mod_php5 — php-cgi в режиме FastCGI.

MySQL/pgSQL/… как был, так и остаётся.</description>
		<content:encoded><![CDATA[<p>nginx как замена Apache.</p>
<p>Вместо mod_php5 — php-cgi в режиме FastCGI.</p>
<p>MySQL/pgSQL/… как был, так и остаётся.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Автор: Валодя</title>
		<link>http://blog.sjinks.pro/wordpress-plugins/nginx-compatibility/comment-page-4/#comment-430833</link>
		<dc:creator>Валодя</dc:creator>
		<pubDate>Wed, 16 Nov 2011 09:24:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sjinks.pro/?page_id=543#comment-430833</guid>
		<description>А php и sql? получится будет только nginx+sql?</description>
		<content:encoded><![CDATA[<p>А php и sql? получится будет только nginx+sql?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Автор: Vladimir</title>
		<link>http://blog.sjinks.pro/wordpress-plugins/nginx-compatibility/comment-page-4/#comment-430639</link>
		<dc:creator>Vladimir</dc:creator>
		<pubDate>Wed, 16 Nov 2011 04:04:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sjinks.pro/?page_id=543#comment-430639</guid>
		<description>Yes, it is.

The configuration file will look differently though:

&lt;pre lang=&quot;nginx&quot;&gt;
server {
    server_name mysite.com www.mysite.com;

    root /path/to/docroot;

    index index.php;

    location /wordpress1 {
        try_files $uri $uri/ @wordpress1;
    }

    location /wordpress2 {
        try_files $uri $uri/ @wordpress2;
    }

    location @wordpress1 {
        fastcgi_pass ...;
        fastcgi_param SCRIPT_FILENAME /path/to/docroot/wordpress1/index.php;
        include /etc/nginx/fastcgi_params;
        fastcgi_param SCRIPT_NAME /index.php;
    }

    location @wordpress2 {
        fastcgi_pass ...;
        fastcgi_param SCRIPT_FILENAME /path/to/docroot/wordpress2/index.php;
        include /etc/nginx/fastcgi_params;
        fastcgi_param SCRIPT_NAME /index.php;
    }

    location ~ \.php$ {
        try_files $uri @wordpress;
        fastcgi_index index.php;
        fastcgi_pass ...;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include /etc/nginx/fastcgi_params;
    }
&lt;/pre&gt;

Basically you will have as many &lt;code&gt;location /wordpressX&lt;/code&gt; (do not forget to replace &lt;code&gt;wordpressX&lt;/code&gt; with the actual folder name!) as the number of WP installations you have. Then for every &lt;code&gt;location /wordpressX&lt;/code&gt; you will need &lt;code&gt;location @wordpressX&lt;/code&gt; and do not forget to modify &lt;code&gt;fastcgi_param SCRIPT_FILENAME&lt;/code&gt; with the actual path to &lt;code&gt;index.php&lt;/code&gt;.</description>
		<content:encoded><![CDATA[<p>Yes, it is.</p>
<p>The configuration file will look differently though:</p>
          
<div class="codebox">
    <div class="the_code" style="" id="p5431">
        <div class="code nginx" id="p543code1">
<span class="kw1">server</span> {<br />
&nbsp; &nbsp; <span class="kw1">server_name</span> mysite.com www.mysite.com;<br />
<br />
&nbsp; &nbsp; <span class="kw1">root</span> /path/to/docroot;<br />
<br />
&nbsp; &nbsp; <span class="kw1">index</span> <span class="kw1">index</span>.php;<br />
<br />
&nbsp; &nbsp; <span class="kw1">location</span> /wordpress1 {<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">try_files</span> $uri $uri/ @wordpress1;<br />
&nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; <span class="kw1">location</span> /wordpress2 {<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">try_files</span> $uri $uri/ @wordpress2;<br />
&nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; <span class="kw1">location</span> @wordpress1 {<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">fastcgi_pass</span> ...;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">fastcgi_param</span> SCRIPT_FILENAME /path/to/docroot/wordpress1/<span class="kw1">index</span>.php;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">include</span> /etc/nginx/fastcgi_params;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">fastcgi_param</span> SCRIPT_NAME /<span class="kw1">index</span>.php;<br />
&nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; <span class="kw1">location</span> @wordpress2 {<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">fastcgi_pass</span> ...;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">fastcgi_param</span> SCRIPT_FILENAME /path/to/docroot/wordpress2/<span class="kw1">index</span>.php;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">include</span> /etc/nginx/fastcgi_params;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">fastcgi_param</span> SCRIPT_NAME /<span class="kw1">index</span>.php;<br />
&nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; <span class="kw1">location</span> ~ \.php$ {<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">try_files</span> $uri @wordpress;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">fastcgi_index</span> <span class="kw1">index</span>.php;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">fastcgi_pass</span> ...;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">fastcgi_param</span> SCRIPT_FILENAME $document_root$fastcgi_script_name;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">include</span> /etc/nginx/fastcgi_params;<br />
&nbsp; &nbsp; }
        </div>
    </div>
</div>

<p>Basically you will have as many <code>location /wordpressX</code> (do not forget to replace <code>wordpressX</code> with the actual folder name!) as the number of WP installations you have. Then for every <code>location /wordpressX</code> you will need <code>location @wordpressX</code> and do not forget to modify <code>fastcgi_param SCRIPT_FILENAME</code> with the actual path to <code>index.php</code>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Автор: Petar</title>
		<link>http://blog.sjinks.pro/wordpress-plugins/nginx-compatibility/comment-page-4/#comment-408690</link>
		<dc:creator>Petar</dc:creator>
		<pubDate>Thu, 03 Nov 2011 00:55:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sjinks.pro/?page_id=543#comment-408690</guid>
		<description>Hi is it possible to run multiple wordpress instances on 1 domain.. example.com/wordpress/ &amp; example.com/wordpress2/ ..? Tnx for plugin works great!</description>
		<content:encoded><![CDATA[<p>Hi is it possible to run multiple wordpress instances on 1 domain.. example.com/wordpress/ &amp; example.com/wordpress2/ ..? Tnx for plugin works great!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Автор: Настройка nginx для работы с WordPress &#124; TIgor's BLOG</title>
		<link>http://blog.sjinks.pro/wordpress-plugins/nginx-compatibility/comment-page-4/#comment-404475</link>
		<dc:creator>Настройка nginx для работы с WordPress &#124; TIgor's BLOG</dc:creator>
		<pubDate>Mon, 31 Oct 2011 15:05:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sjinks.pro/?page_id=543#comment-404475</guid>
		<description>[...] с этой и другими проблемами нужно поставить плагин nginx Compatibility. Если у вас стоит PHP5, то не нужно активировать плагин [...]</description>
		<content:encoded><![CDATA[<p>[...] с этой и другими проблемами нужно поставить плагин nginx Compatibility. Если у вас стоит PHP5, то не нужно активировать плагин [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Автор: Vladimir</title>
		<link>http://blog.sjinks.pro/wordpress-plugins/nginx-compatibility/comment-page-4/#comment-356976</link>
		<dc:creator>Vladimir</dc:creator>
		<pubDate>Fri, 30 Sep 2011 15:33:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sjinks.pro/?page_id=543#comment-356976</guid>
		<description>nginx</description>
		<content:encoded><![CDATA[<p>nginx</p>
]]></content:encoded>
	</item>
	<item>
		<title>Автор: Валодя</title>
		<link>http://blog.sjinks.pro/wordpress-plugins/nginx-compatibility/comment-page-4/#comment-351284</link>
		<dc:creator>Валодя</dc:creator>
		<pubDate>Tue, 27 Sep 2011 08:33:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sjinks.pro/?page_id=543#comment-351284</guid>
		<description>&lt;blockquote&gt;А по-хорошему, если Вы используете nginx, зачем Вам нужен Apache? Избавляйтесь от Apache и отдайте память приложениям&lt;/blockquote&gt;

а что поставить вместо него?</description>
		<content:encoded><![CDATA[<blockquote><p>А по-хорошему, если Вы используете nginx, зачем Вам нужен Apache? Избавляйтесь от Apache и отдайте память приложениям</p></blockquote>
<p>а что поставить вместо него?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Автор: Джентльменский набор плагинов для WordPress</title>
		<link>http://blog.sjinks.pro/wordpress-plugins/nginx-compatibility/comment-page-4/#comment-310027</link>
		<dc:creator>Джентльменский набор плагинов для WordPress</dc:creator>
		<pubDate>Fri, 02 Sep 2011 05:41:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sjinks.pro/?page_id=543#comment-310027</guid>
		<description>[...] Не берусь рекомендовать этот плагин всем поголовно, но гики найдут его интересным. За подробностями сюда. [...]</description>
		<content:encoded><![CDATA[<p>[...] Не берусь рекомендовать этот плагин всем поголовно, но гики найдут его интересным. За подробностями сюда. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

