Skip to content

Instantly share code, notes, and snippets.

@nojima
Created September 9, 2014 06:03
Show Gist options
  • Save nojima/cb96320ab0230fcf2c64 to your computer and use it in GitHub Desktop.
Save nojima/cb96320ab0230fcf2c64 to your computer and use it in GitHub Desktop.

nginx reading memo

ビルド

sudo apt-get install build-essential mercurial wget curl libpcre3-dev zlib1g-dev 
hg clone http://hg.nginx.org/nginx
cd nginx
hg checkout release-1.7.4
auto/configure
make
sudo make install

ディレクトリ構成

nginx/
  auto/          configure スクリプトが入ってる
  contrib/       vim の syntax とか
  docs/          man など
  src/           ソースコード
    core/        データ構造、メモリ管理、ハッシュなど汎用的なもの
    event/
    http/        その名の通り
      modules/   BASIC 認証や FastCGI や rewrite など、色々なモジュール
    mail/        その名の通り
    misc/        テストと perftools
    mysql/       MySQL
    os/          OS 依存のコード
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment