Nginx 1.0.0 is out
41–50 of 77 posts
Re: Nginx 1.0.0 is out
#42Earlier quoted context omitted.
Congratulations to the team indeed. I'm setting up my next project in this configuration as well and I've found nginx to be a very sweet server. I'll be serving a lot of javascript and css, but using php to handle the utility chores of accessing mysql and couchdb. Even though I'm keeping the apache back-end for this, I confess it's more out of comfort and laziness (and the rush to get it out) than because of some pro…
It really is trivial to set up an fcgi process to run PHP directly from nginx. On the nginx side, something like my config: location ~ \.php { fastcgi_index index.php; include fastcgi_params; fastcgi_pass localhost:55155; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; } Then you just need to run php in fcgi daemon mode which is built in, use php-cgi -b localhost:55155 to match that setup... more de…
Re: Nginx 1.0.0 is out
#43Is there anything like cpanel / webmin but for managing nginx?
Re: Nginx 1.0.0 is out
#44A bit off topic, please consider the following example in [1]: if ($args ~ post=140){ rewrite ^ http://example.com/ permanent; } Why is "^" used as a regex wildcard instead of ".*"? Thanks! [1] http://wiki.nginx.org/HttpRewriteModule
Re: Nginx 1.0.0 is out
#45Earlier quoted context omitted.
Congratulations to the team indeed. I'm setting up my next project in this configuration as well and I've found nginx to be a very sweet server. I'll be serving a lot of javascript and css, but using php to handle the utility chores of accessing mysql and couchdb. Even though I'm keeping the apache back-end for this, I confess it's more out of comfort and laziness (and the rush to get it out) than because of some pro…
for me the reason to stay with an apache/mod_php backend was very bad experience I had with fastcgi back in the 2006/2007 area where I was using a lighttpd/fastcgi configuration. I've seen crashes in lighty, crashes in fastcgi and subtle differences in behavior between fastcgi and mod_php. FastCGI just wasn't a commonly used method of deployment back then, so there were for sure some bugs around that I didn't have ti…
https://nealpoole.com/blog/2011/04/setting-up-php-fastcgi-an...
Thanks for the keep-alive tip. I missed that one.
EDIT: I see that the author of the post I linked replied below- also with the link.
Re: Nginx 1.0.0 is out
#46A bit off topic, please consider the following example in [1]: if ($args ~ post=140){ rewrite ^ http://example.com/ permanent; } Why is "^" used as a regex wildcard instead of ".*"? Thanks! [1] http://wiki.nginx.org/HttpRewriteModule
Re: Nginx 1.0.0 is out
#47Re: Nginx 1.0.0 is out
#48Re: Nginx 1.0.0 is out
#49Fun bit: on the http://sysoev.ru/ the news starts with "Поехали!" (Let's go! / Let's ride!)—Yuri Gagarin quote from the launch of the first manned space flight fifty years ago.
Re: Nginx 1.0.0 is out
#50Earlier quoted context omitted.
until very recently, the SVN repo was not made available to the public. AFAIK, there is still no bug tracker. Dont get me wrong, I have several production sites on nginx - but the development methodology makes me very nervous. Cherokee has some of the same objectives as nginx (fast and lightweight) and has a very open development process. Plus, the Cherokee Market is very cool ( http://cherokee-market.com/ ) !
It (nginx) is bsd licensed. If you don't like the development model, you can always fork it on github, or start a company that develops and supports a closed-source fork.