https://gist.github.com/990354 ちょさんが作ってる cocproxy の nginx 版です。たぶん各種 cocproxy の実装の中で一番高速だと思います。nginx の conf 書きやすくて良いですね。 nginx -p . -c cocproxy.nginx.conf とかで起動しブラウザの proxy として指定... 続きを読む
どのURLにアクセスされてもステータスコード503を返して /home/www/maintenance.html を表示する設定。 server { server_name your.hostname; error_page 503 /maintenance.html; location / { return 503; } location = /maintenance.html { root /home/www; }... 続きを読む
Sudarshan AcharyaTraditionally, I used to go with Apache, Mod Jk and Tomcat to host any Java web apps. But this time I was working on a small hobby project written in Groovy on Grails and had to deploy it to a VPS with a very limited resource... 続きを読む
こんにちは、hsbtです。 北海道から関東に引っ越してきて、そろそろ体験したことのない暑さの季節だなあと毎日おびえている毎日です。 さて、今号から近年注目されている Web サーバーの nginx を用いて、Webアプリケーションを運用していく上でのノウハウを連... 続きを読む
nginxとは? nginxはロシアで開発されている軽量で高速なWebサーバです。 現在シェアは 7% 近くあるようです。もちろんApacheに比べれば少ないですが、Apache 55%、IIS 25%, nginx 7%で3番目に使われているWebサーバになります。 昔は、Pound+Lighttpd+Apacheの... 続きを読む
I have been playing with CouchDB for the last couple of days a lot. And I like what I see even more. Couch seems to be extracted from the web so much, that it reminds me of my joy when discovering Rails couple of years ago. One of those impos... 続きを読む
どうやらUnicornというのが良いらしいという噂を聞きつけたので、どんなもんじゃろと試してみることにした。 Route 477 - 大規模Railsサイトのための新しいHTTPサーバ、Unicorn Unicornてのは何者なのかと言うと、Rack及びRailsに対応したRubyのWebアプリ用のHT... 続きを読む
Phusion has just announced the release of Passenger 2.2.0, a significant update to the dream-come-true Apache module for deploying Rack-based Ruby applications (including Rails, Sinatra, and Ramaze apps). Or... is it? With 2.2.0 Passenger is ... 続きを読む
Give life to your timesheet data February 25th, 2010 by Yves | Posted in BeeBole | No Comments » Tags: api, BeeBole, google, SaaS, timesheet The recent launch of the Google Chart Tools project gave me the idea of a short video demonstrating h... 続きを読む
Posted by ezmobius Sun, 20 Jul 2008 20:32:00 GMT Valery Kholodkov has written a very cool nginx module for handling uploads. The way this works is that you specify a location block to handle the uploads. So if you are using the standard nginx... 続きを読む