HEYBlog about Technology

京都の学生エンジニアのエンジニアブログ

2014-04-01から1ヶ月間の記事一覧

nginx + mrubyで画像返すやつ書いてみた

(おい!またこいつnginxの話してるぞ!!) わりと環境構築から詰まるところ多かった matsumoto-r/ngx_mruby · GitHub 基本的にここ参照だお! git clone git://github.com/matsumoto-r/ngx_mruby.git cd ngx_mruby git submodule init git submodule update …

nginx+luaで画像返すやつ書いてみた。

nginxのLuaモジュール使ってみた。 OpenResty - a fast web app server by extending nginx nginxにLuaモジュール組み込むのにコレ使った。 インストール方法 wget http://openresty.org/download/ngx_openresty-1.5.11.1.tar.gz cd ngx_openresty-1.5.11.1.…

http_loadでベンチマークしてた一日だった

abコマンドは Apacheのabコマンドでベンチマークを測定する | Linuxで自宅サーバ構築 こんな感じでやったことあったけど、先輩に今日はhttp_load教えてもらった。 http://www.acme.com/software/http_load/ wget http://www.acme.com/software/http_load/htt…

node.jsでContent-Type指定する際のメモ

ただ、リクエストに対して、ただ、画像を返すやつ書いてたのに、一瞬詰まった。 var express = require('express'); var router = express.Router(); var fs = require('fs'); /* GET images listing. */ router.get('/', function(req, res) { image_path =…