nginx+php整合(是让nginx可以运行php,以及下载地址)
程序员文章站
2022-10-16 15:26:05
下载地址: nginx:http://nginx.org/en/download.html PHP: https://windows.php.net/download/ 都是官网的自己选择版本 安装文件目录: nginx: D:\wcnm\Nginx\nginx-12 PHP: D:\wcnm\PH ......
下载地址:
nginx:http://nginx.org/en/download.html
php: https://windows.php.net/download/
都是官网的自己选择版本
安装文件目录:
nginx: d:\wcnm\nginx\nginx-12
php: d:\wcnm\php\php\php-7.2.12
nginx中的conf/nginx.conf配置
位置如下:
修改内容
端口最好80其他也行,发不出去需要80,
下面注意:
如果出现
nginx -t(查看配置文件是否有错)
报错:
nginx 没有启动的话就不能启动了,会报错
nginx其他命令
启动: start nginx 关闭: nginx -s stop 重载配置文件:nginx -s reload
php运行命令 :php-cgi -b 127.0.0.1:9000 -c php.ini
需要在nginx上运行php那么上面的那一条命令需要运行将nginx启动配置成功后运行。
警告是添加了php_mysql.dll和php_mysqli.dll
这个是php的不关nginx的事,并且不能关闭上面的哪一个窗口。