Railsコラム「IIS 8+(HttpPlatformHandler)でRuby on Railsを実行」
私がマーケティング支援しているトランスネット 友村様のRailsコラム「IIS 8+(HttpPlatformHandler)でRuby on Railsを実行」が公開されました。友村様は今回で2号目ですが、前回もとても好評でコラムニストとして良いスタートを切っています。
興味がある方はどうぞ!
###
Azure Web サイト上で一足先にリリースされていた、「HttpPlatformHandler」が本年(2015)の2月にIIS8以降の拡張機能として正式にリリースされました。
Announcing the Release of the HttpPlatformHandler Module for IIS 8+
HttpPlatformHandler
HttpPlatformHandlerの役割を公式サイトを参考にまとめてみます。
1. Process management of HTTP Listeners - this could be any process that can listen on a port for HTTP requests,
for example Tomcat, Jetty, Node.exe, Ruby etc.2. Proxy requests to the process it manages.
2. Proxy requests to the process it manages.
「HttpPlatformHandler」は指定されたポートで待ち受けるプロセスの管理を行い、HTTPリクエストを様々なプロセスへプロキシをします。
つまり、実行されるアプリケーション側は、IISを意識することなく動作させることが出来ます。
この続きは以下をご覧ください。