以下を追加する。
[sample]
------------------------------------------------------------------------------------------------
server {
listen 80;
server_name localhost;
access_log /var/log/nginx/access.log main;
error_log /var/log/nginx/error.log;
root /var/www/html;
location / {
index index.php index.html index.htm;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
}
-------------------------------------------------------------------------------------------------
サービスの確認を行う。
systemctl restart nginx
vi /etc/php-fpm.d/www.conf
0 件のコメント:
コメントを投稿