Nginx で PHP を使う (Debian GNU/Liunx)
Nginx(エンジンエックス)は軽量ながら多機能なウェブサーバ/リバースプロキシで,業界標準の Apache と人気を二分しています。Nginx には Apache 独自の機能(mod_rewrite など)はないため,Apache を前提として書かれた既存のアプリケーションはそのままでは動作しない場合が多いですが,多少の設定や書き換えで動作する場合もあります。ユーザが多いため,そのあたりの情報を見つけやすいのも良い点です。
本稿では,Debian GNU/Linux 10 Buster に Nginx をインストールし PHP サポートを有効化する方法をメモします。
まずは Nginx を導入して動作確認してみます。
# apt install nginx
# systemctl enable nginx
# systemctl start nginx
localhost:80 にアクセスするとテストページが表示されるはずです。
必要なパッケージ類を導入します。
# apt install php php-fpm
次に,Nginx の設定ファイルを編集します。
# vi /etc/nginx/sites-available/default
を開き,
# Add index.php to the list if you are using PHP
index index.html index.htm index.nginx-debian.html;
server_name _;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
}
# pass PHP scripts to FastCGI server
#
# location ~ \.php$ {
# include snippets/fastcgi-php.conf;
#
# # With php-fpm (or other unix sockets):
# fastcgi_pass unix:/run/php/php7.3-fpm.sock;
# # With php-cgi (or other tcp sockets):
# fastcgi_pass 127.0.0.1:9000;
#}
とあるのを,
# Add index.php to the list if you are using PHP
index index.html index.htm index.nginx-debian.html index.php;
server_name _;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
}
# pass PHP scripts to FastCGI server
#
location ~ \.php$ {
include snippets/fastcgi-php.conf;
#
# # With php-fpm (or other unix sockets):
fastcgi_pass unix:/run/php/php7.3-fpm.sock;
# # With php-cgi (or other tcp sockets):
# fastcgi_pass 127.0.0.1:9000;
}
と変更します(php-fpm 関連のコメントアウトを外すとともに,インデックスページとして表示するファイル名のリストに index.php を加えています)。
$ systemctl restart nginx
これで PHP が利用できるようになっているはずです。
Lighttpd ほどではありませんがリソース消費も少なく,前回 Lighttpd を試した環境(La Frite 上の Armbian Buster 64bit,いくつかの単純なアプリケーションが動作)で Lighttpd から Nginx に切り替えたところ,100MB 前後の RAM 消費が 120MB 前後に増えた程度でした。worker_processes 数を絞り込めばもう少し減らせるのではないかと思います。
参照:
投稿にあたり,完全な IP アドレスが保存されます(公開されません)。
コメントはスパムフィルタで処理され,承認後に公開されます。