<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"><channel><title>Homo-Adminus Blog - Latest Comments in Nginx - Маленький, Но Очень Мощный И Эффективный Web-Сервер</title><link>http://homo-adminus.disqus.com/</link><description></description><language>en</language><lastBuildDate>Thu, 28 Feb 2008 22:54:29 -0000</lastBuildDate><item><title>Re: Nginx - Маленький, Но Очень Мощный И Эффективный Web-Сервер</title><link>http://blog.kovyrin.net/2006/04/04/nginx-small-powerful-web-server/#comment-2460329</link><description>Так все-таки - как эффективнее использовать Nginx - в связке с апачем как фронтэнд или как замена апача?&lt;br&gt;&lt;br&gt;Если можно - опишите какую версию nginx Вы используете на том сервере который показал способность держать 150-200Mbit/s и какая у Вас конфигурация nginx, и, если можно, желаза.&lt;br&gt;&lt;br&gt;С уважением,&lt;br&gt;Денис</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Denis</dc:creator><pubDate>Thu, 28 Feb 2008 22:54:29 -0000</pubDate></item><item><title>Re: Nginx - Маленький, Но Очень Мощный И Эффективный Web-Сервер</title><link>http://blog.kovyrin.net/2006/04/04/nginx-small-powerful-web-server/#comment-2460328</link><description>Скажите, какой максимальный размер отдаваемого статического файла?</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Stepan Klimov</dc:creator><pubDate>Fri, 09 Nov 2007 03:59:33 -0000</pubDate></item><item><title>Re: Nginx - Маленький, Но Очень Мощный И Эффективный Web-Сервер</title><link>http://blog.kovyrin.net/2006/04/04/nginx-small-powerful-web-server/#comment-2460327</link><description>Алексей, добрый день.&lt;br&gt;Возникла проблема и решения пока не нашёл.&lt;br&gt;Загружаю файл *.asf который после аплоада обрабатывается mencoder'ом, но после того как файл закинут на сервер и начата обработка менкодером, сервер выдаёт 504ю ошибку.&lt;br&gt;как с этим можно бороться?</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Sergey</dc:creator><pubDate>Sun, 07 Jan 2007 10:56:12 -0000</pubDate></item><item><title>Re: Nginx - Маленький, Но Очень Мощный И Эффективный Web-Сервер</title><link>http://blog.kovyrin.net/2006/04/04/nginx-small-powerful-web-server/#comment-2460326</link><description>Hey, I am thinking about using nginx as a reverse proxy in front of Tomcat. Have anyone done it before ?</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Eugene</dc:creator><pubDate>Wed, 27 Dec 2006 13:56:51 -0000</pubDate></item><item><title>Re: Nginx - Маленький, Но Очень Мощный И Эффективный Web-Сервер</title><link>http://blog.kovyrin.net/2006/04/04/nginx-small-powerful-web-server/#comment-2460325</link><description>I am trying to install nginx to act as a reverse proxy on a Linksys NSLU2 with Unslung 5.5 Linux operating system.&lt;br&gt;&lt;br&gt;I have followed the tutorial here:&lt;br&gt;&lt;a href="http://www.nslu2-linux.org/wiki/HowTo/ReverseProxy" rel="nofollow"&gt;http://www.nslu2-linux.org/wiki/HowTo/ReverseProxy&lt;/a&gt;&lt;br&gt;and all is well until I get to the part where I modify the nginx.conf file to add the Cherokee server as per the tutorial extract below:&lt;br&gt;&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&lt;br&gt;At this point of the proceedings I should be able to see the Cherokee server at &lt;br&gt;:7007/cherokee/&lt;br&gt;but no luck.&lt;br&gt;&lt;br&gt;I am also trying to proxy the web interface of my router at 192.168.1.254&lt;br&gt;Similarly for the router page at &lt;br&gt;:7007/router/&lt;br&gt;&lt;br&gt;My nginx.conf file is as shown below. &lt;br&gt;Have I added the proxy lines to the config file correctly?&lt;br&gt;&lt;br&gt;Thanks for your help.&lt;br&gt;&lt;br&gt;************************&lt;br&gt;My nginx.conf file.&lt;br&gt;&lt;br&gt;#user  nobody;&lt;br&gt;worker_processes  1;&lt;br&gt;&lt;br&gt;#error_log  logs/error.log;&lt;br&gt;#error_log  logs/error.log  notice;&lt;br&gt;#error_log  logs/error.log  info;&lt;br&gt;&lt;br&gt;#pid        logs/nginx.pid;&lt;br&gt;&lt;br&gt;&lt;br&gt;events {&lt;br&gt;    worker_connections  1024;&lt;br&gt;}&lt;br&gt;&lt;br&gt;&lt;br&gt;http {&lt;br&gt;    include       conf/mime.types;&lt;br&gt;    default_type  application/octet-stream;&lt;br&gt;&lt;br&gt;    sendfile        on;&lt;br&gt;    #tcp_nopush     on;&lt;br&gt;&lt;br&gt;    #keepalive_timeout  0;&lt;br&gt;    keepalive_timeout  65;&lt;br&gt;    tcp_nodelay        on;&lt;br&gt;&lt;br&gt;    #gzip  on;&lt;br&gt;&lt;br&gt;    server {&lt;br&gt;        #listen       80;&lt;br&gt;	 listen       7007;&lt;br&gt;        server_name  localhost;&lt;br&gt;&lt;br&gt;        #charset koi8-r;&lt;br&gt;&lt;br&gt;        #access_log  logs/host.access.log  main;&lt;br&gt;&lt;br&gt;        location / {&lt;br&gt;            root   html;&lt;br&gt;            index  index.html index.htm;&lt;br&gt;        }&lt;br&gt;&lt;br&gt;        #error_page  404              /404.html;&lt;br&gt;&lt;br&gt;        # redirect server error pages to the static page /50x.html&lt;br&gt;        #&lt;br&gt;        error_page   500 502 503 504  /50x.html;&lt;br&gt;        location = /50x.html {&lt;br&gt;            root   html;&lt;br&gt;        }&lt;br&gt;&lt;br&gt;	 #proxy Cherokee&lt;br&gt;	 location /cherokee/ {&lt;br&gt;          	  proxy_pass      &lt;a href="http://127.0.0.1:8008;" rel="nofollow"&gt;http://127.0.0.1:8008;&lt;/a&gt;&lt;br&gt;          	  proxy_redirect  default;&lt;br&gt;        }&lt;br&gt;&lt;br&gt;	 #proxy Router&lt;br&gt;	 location /router/ {&lt;br&gt;          	  proxy_pass      &lt;a href="http://192.168.1.254:80;" rel="nofollow"&gt;http://192.168.1.254:80;&lt;/a&gt;&lt;br&gt;          	  proxy_redirect  default;&lt;br&gt;        }&lt;br&gt;&lt;br&gt;    }&lt;br&gt;&lt;br&gt;}</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Terry Gillett</dc:creator><pubDate>Sun, 22 Oct 2006 04:36:45 -0000</pubDate></item><item><title>Re: Nginx - Маленький, Но Очень Мощный И Эффективный Web-Сервер</title><link>http://blog.kovyrin.net/2006/04/04/nginx-small-powerful-web-server/#comment-2460324</link><description>Alexey,&lt;br&gt;&lt;br&gt;As I'm sure you know already, some of us have set up a wiki for Nginx and are working on getting English, and German translations completed and the Russian documention ported:&lt;br&gt;&lt;br&gt;&lt;a href="http://wiki.codemongers.com/Nginx" rel="nofollow"&gt;http://wiki.codemongers.com/Nginx&lt;/a&gt;&lt;br&gt;&lt;br&gt;Hope this helps others give Nginx a try.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Cliff Wells</dc:creator><pubDate>Mon, 18 Sep 2006 02:14:38 -0000</pubDate></item><item><title>Re: Nginx - Маленький, Но Очень Мощный И Эффективный Web-Сервер</title><link>http://blog.kovyrin.net/2006/04/04/nginx-small-powerful-web-server/#comment-2460323</link><description>Thanks for the great write up!&lt;br&gt;&lt;br&gt;I would be really interested to see your configuration.  Can it compress dynamic content?   Do you use it as a front end to apache or as a standalone web server?&lt;br&gt;&lt;br&gt;How did it compare to lighttpd number wise?</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Joseph McDonald</dc:creator><pubDate>Thu, 13 Apr 2006 20:07:22 -0000</pubDate></item><item><title>Re: Nginx - Маленький, Но Очень Мощный И Эффективный Web-Сервер</title><link>http://blog.kovyrin.net/2006/04/04/nginx-small-powerful-web-server/#comment-2460322</link><description>I will post sample configuration for nginx+php+fcgi there tomorrow.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Scoundrel</dc:creator><pubDate>Sun, 09 Apr 2006 06:42:18 -0000</pubDate></item><item><title>Re: Nginx - Маленький, Но Очень Мощный И Эффективный Web-Сервер</title><link>http://blog.kovyrin.net/2006/04/04/nginx-small-powerful-web-server/#comment-2460321</link><description>That would be rather weird, since if your web page is correct they use exactly the same system: epoll on Linux 2.6, kqueue on FreeBSD, etc...&lt;br&gt;&lt;br&gt;Is there some English documentation on how to set up nginx to serve PHP+FastCGI? I'm interested in some benchmarking.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">morbo</dc:creator><pubDate>Sun, 09 Apr 2006 03:47:41 -0000</pubDate></item><item><title>Re: Nginx - Маленький, Но Очень Мощный И Эффективный Web-Сервер</title><link>http://blog.kovyrin.net/2006/04/04/nginx-small-powerful-web-server/#comment-2460320</link><description>I've tried to use it and have compared it with nginx. Its performance is very poor comparing to nginx. Nginx uses very efficient connection handling algorithms and that is why it is more preferable for high loads.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Scoundrel</dc:creator><pubDate>Sat, 08 Apr 2006 05:16:06 -0000</pubDate></item><item><title>Re: Nginx - Маленький, Но Очень Мощный И Эффективный Web-Сервер</title><link>http://blog.kovyrin.net/2006/04/04/nginx-small-powerful-web-server/#comment-2460319</link><description>Consider trying lighttpd then. Very similar capabilities - more features - better documentation.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">morbo</dc:creator><pubDate>Sat, 08 Apr 2006 04:57:50 -0000</pubDate></item></channel></rss>