WEBサーバー:Nginx

Nginxとは

WEBサーバ

Apacheとの違い

比較項目 Apache Nginx 備考
シェア 2021年現在
同時複数アクセスへの処理 1アクセス=1処理 複数アクセス=1処理
同時複数アクセス発生時の処理速度
難易度

設定ファイル

一覧

※Ubuntu例

ファイル名 機能 パス 備考
nginx.conf 各設定ファイルの読込パス、ログ等 /etc/nginx/
default.conf server設定 /etc/nginx/

nginx.conf

user nginx;
worker_processes 1;

error_log /var/log/nginx/error.log warn;
pid  /var/run/nginx.pid;

events {
 worker_connections 1024;
}

http {
 include   /etc/nginx/mime.types;
 default_type application/octet-stream;

 log_format
  main ’$remote_addr - $remote_user [$time_local] “$request” ‘
   ’$status $body_bytes_sent “$http_referer” ‘
   '”$http_user_agent” “$http_x_forwarded_for”‘;

 access_log /var/log/nginx/access.log main;

 sendfile  on;
 #tcp_nopush  on;

 keepalive_timeout 65;

 #gzip on;

 conf.d配下confファイルをロード
 include /etc/nginx/conf.d/*.conf;
}

conf.d配下confファイル

例:default.conf
server {

 待ち受けポート番号
 listen 80;

 ホスト名
 server_name localhost;

 #charset koi8-r;
 #access_log /var/log/nginx/log/host.access.log main;

 URIのパス毎の設定
 locationdディレクティブ参照
 location / {
  root  /usr/share/nginx/html;
  index index.html index.htm;
 }

 #error_page 404 /404.html;

 # redirect server error pages to the static page /50x.html
 error_page  500 502 503 504 /50x.html;
 location = /50x.html {
  root  /usr/share/nginx/html;
 }


 # proxy the PHP scripts to Apache listening on 127.0.0.1:80
 #
 #location ~ \.php$ {
 # proxy_pass  http://127.0.0.1;
 #}


 # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000

 phpを扱う場合は以下を有効に
 =phpへのリクエストの場合にPHP-FPMに処理を受け渡す設定
 #location ~ \.php$ {
 # root    html;
 # fastcgi_pass  127.0.0.1:9000;
 # fastcgi_index index.php;
 # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
 # include  fastcgi_params;
 #}


 # deny access to .htaccess files, if Apache’s document root
 # concurs with nginx’s one
 #
 #location ~ /\.ht {
 # deny all;
 #}

}

ディレクティブ

location

書式
location プレフィックス URIのパス {
 設定
}

locationディレクティブは複数設定可能
ネスト可
複数の設定の中から当てはまる設定が選択される

location /aaa {
 location /aaa/bbb {
  aaa/bbbディレクトリ配下に適用される設定(1)
 }
 location /aaa/.*\.php$ {
  aaaディレクトリ配下のphpファイルに適用される設定(2)
 }
 location /aaa {
  (1)、(2)以外に適用される設定(3)
 }
}
location / {
 (1)、(2)、(3)以外に適用される設定
}

try_files

指定のパスが存在すれば処理を通し、最後に無かった場合の処理を行う

$uriのファイル、$uriのディレクトリの順で表示。2つともなければindex.phpを表示
try_files $uri $uri/ /index.php;

$uriのファイル、$uriのディレクトリの順で表示。2つともなければ404を表示
try_files $uri $uri/ =404;

バーチャルホスト

nginx.conf

{
 〜
 include /etc/nginx/conf.d/*.conf;
}

各ホスト設定ファイル

※/etc/nginx/conf.d/host1.conf

server {

 listen 80;
 取得済みのドメイン名
 server_name localhost.host1;
 
 location / {
  root /var/www/html/host1;
  index index.php index.html;
 }

 location ~* \.(jpg|jpeg|png|gif|ico|css|js)$ {
  expires 10d;
 }

 try_files $uri $uri/ /index.php?q=$uri&$args;

 location ~ \.php$ {
  root /var/www/html/host1;
  〜
 }

 error_page 500 502 503 504 /50x.html;
 location = /50x.html {
  root html;
 }
}