複数のphpを使い分ける

/nginx/xxxx/xxxx.conf
#PHP_setting
location ~ \.(php|html)$ {
fastcgi_pass unix:/run/php/php8.0-fpm.sock;
fastcgi_index index.php;
include /etc/nginx/fastcgi_params;
}

/nginx/yyyy/yyyy.conf
#YYYY
location /YYYY{
alias /111/222/333;
index index.php index.html;

location ~ \.(php|html)$ {
fastcgi_pass unix:/run/php/php7.4-fpm.sock;
fastcgi_index index.php;
include /etc/nginx/fastcgi_params;
}
}

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください