LoginSignup
5
3

More than 5 years have passed since last update.

ngx_mrubyの裏(不人気)機能(1)

Posted at

ngx_mrubyには実は裏機能があります。

location ~ \.rb$ {
    mruby_add_handler on;
}

こんな風にかくと、アクセスのあったRubyスクリプトがmruby上で実行されて、レスポンスを返します。レスポンスデータは、

Nginx.rputs "fuga"
Nginx.echo "hoge"

あたりで作ると良いでしょう。これで、mrubyでWebアプリが書けるよ!

5
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
3