在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
nginx配置文件: server { listen 80; server_name localhost; access_log /var/log/nginx/log/host.access.log main; root /usr/share/nginx/html; #原本这个设置是在下面localtion里面的 location / { index index.php index.html index.htm; } error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; } location ~* \.php$ { fastcgi_index index.php; fastcgi_pass 127.0.0.1:9000; include fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param SCRIPT_NAME $fastcgi_script_name; } } php-fpm配置文件(注意:可能有些php版本不是这个文件,但只要意思到位即可): vi /etc/php-fpm.d/www.conf 修改这两个地方为nginx用户 最后测试php页面: <?php phpinfo(); ?>
|
2022-08-30
2022-08-15
2022-08-17
2022-11-06
2022-08-17
请发表评论