来源:自学PHP网 时间:2015-04-17 18:33 作者: 阅读:次
[导读] 1、准备的文件:Nginx 下载地址:http://sysoev.ru/nginx/nginx-0.8.16.zip PHP 下载地址:http://cn.php.net/distributions/php-5.2.11-Win32.zip MySQL 下载地址:http://download.mysql.cn/download_file/zip/5.0/mysql-5.0.22-w...
1、准备的文件: Nginx 下载地址:http://sysoev.ru/nginx/nginx-0.8.16.zip PHP 下载地址:http://cn.php.net/distributions/php-5.2.11-Win32.zip MySQL 下载地址:http://download.mysql.cn/download_file/zip/5.0/mysql-5.0.22-win32.zip 2、nginx需要的是cgi方式的php,所以如下几个地方是重点,否则nginx无法打开php文件 : enable_dl = On 3、启动Nginx和PHP: 启动Nginx很简单,使用nginx目录下面的nginx.exe双击即可 。可是php的启动因为要使用cgi方式,所以有些特殊。我参照网上的方法下载了RunHiddenConsole.exe ,使用该工具用其执行的cmd窗口会自动关闭,否则你看一个CMD窗口一直在那晃来晃去,头会晕的。 创建start_php.bat,来启动php,文件内容如下: @echo off 创建stop_nginx.bat,来关闭php和nginx进程,文件内容如下: @echo off 4、nginx配置文件:(D: ginxconf ginx.conf) #user nobody; error_log logs/error.log;
#log_format main $remote_addr - $remote_user [ $time_local] "$request" #access_log logs/access.log main; sendfile on; #keepalive_timeout 0 ; #gzip on; server { charset gbk; #access_log logs/host.access.log main; location / { #error_page 404 /404 .html; # redirect server error pages to the static page /50x.html # proxy the PHP scripts to Apache listening on 127.0.0.1:80 # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
# location / {
# ssl on; # ssl_session_timeout 5m; |
自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习
京ICP备14009008号-1@版权所有www.zixuephp.com
网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com