Debian 系统下的安装
更新系统软件包
sudo apt-get update
安装 Nginx
sudo apt-get install nginx
启动 Nginx:
sudo service nginx start
安装PHP
sudo apt-get install php
安装完成后,可以使用以下命令检查PHP版本:
php -v
需要配置 Nginx,以便支持PHP。
sudo nano /usr/local/nginx/conf/nginx.conf
添加:
location ~ \.php$ { fastcgi_pass 127.0.0.1:9000; fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name; fastcgi_param PHP_VALUE "open_basedir=/www/com_test/:/tmp/:/proc/"; include fastcgi_params; }
macOS 系统下的安装
Windows 系统下的安装
声明:本站所有文章,如无特殊说明或标注,均为原创。