nginxの設定と使い方
概要
- nginx — HTTP and reverse proxy server, mail proxy server
ningxオプション
構文チェック
# nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
設定の再読み込み
# nginx -s reload
コンテキストとディレクティブ
- コンテキストの中でディレクティブが使える
コンテキストとディレクティブの種類
main
user <user>
- 実行ユーザ
worker_processes
- プロセス数
events
worker_connections
- 一つのワーカーが同時に処理する数
http
log_format
- アクセスログの書式
root
- ドキュメントルート
index
- インデックスファイル
autoindex on|off
- インデックスリストの表示
server
listen <port>
- 待受するポート
server_name <name>
- バーチャルホスト名
rewirte
- リダイレクト設定
location
設定の具体例
user www www; ## Default: nobody
worker_processes 5; ## Default: 1
error_log logs/error.log;
pid logs/nginx.pid;
worker_rlimit_nofile 8192;
events {
worker_connections 4096; ## Default: 1024
}
http {
include conf/mime.types;
include /etc/nginx/proxy.conf;
include /etc/nginx/fastcgi.conf;
index index.html index.htm index.php; # indexとして扱うファイル
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] $status '
'"$request" $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log logs/access.log main;
sendfile on;
tcp_nopush on;
server_names_hash_bucket_size 128; # this seems to be required for some vhosts
server { # php/fastcgi
listen 443 ssl; # 待ち受ける
ssl on;
server_name domain1.com www.domain1.com;
access_log logs/domain1.access.log main;
root html;
location ~ \.php$ {
fastcgi_pass 127.0.0.1:1025;
}
}
server { # simple reverse-proxy
listen 80;
server_name domain2.com www.domain2.com; # virtual hostの名前と同じ
access_log logs/domain2.access.log main;
# serve static files
location ~ ^/(images|javascript|js|css|flash|media|static)/ {
root /var/www/virtual/big.server.com/htdocs;
expires 30d;
}
# pass requests for dynamic content to rails/turbogears/zope, et al
location / {
proxy_pass http://127.0.0.1:8080;
proxy_pass_header ... # proxy passで透過させるヘッダーを指定
proxy_set_header ... # ヘッダーフィールドを再定義 or 追加する
}
}
upstream big_server_com {
server 127.0.0.3:8000 weight=5;
server 127.0.0.3:8001 weight=5;
server 192.168.0.1:8000;
server 192.168.0.1:8001;
}
server { # simple load balancing
listen 80;
server_name big.server.com;
access_log logs/big.server.access.log main;
location / {
proxy_pass http://big_server_com;
}
}
}