Windows下配置Nginx+php+mysql

一、准备工作

1、下载nginx

 

      http://nginx.org/en/download.html

      以nginx-0.7.65.zip为例

 

2、下载php

 

      http://cn.php.net/get/php-5.2.13-Win32.zip/from/this/mirror

      php-5.3.2-nts-Win32-VC9-x86.zip

 

3、下载RunHiddenConsole

     http://blogbuildingu.com/files/RunHiddenConsole.zip

 

二、安装步骤

 

1、创建安装目录

 

     在C盘创建两个目录nginx和php5,把nginx-0.7.65.zip解压到nginx文件中,把php-5.3.2-nts-Win32-VC9-x86.zip解压到php5文件夹中。将RunHiddenConsole.zip解压,将RunHiddenConsole.exe放到php5目录下。

 

2、参数配置

  

    2.1 php配置

  

    打开php5文件夹,找到php.ini-recommended,更名为php.ini 。用UltraEdit编辑。

 

    找到; cgi.fix_pathinfo=1,去掉前面的;
    找到
    ;extension=php_gd2.dll
    ;extension=php_mysql.dll
    ;extension=php_mysqli.dll

    把前面的;去掉,这样就能支持gd图形、mysql数据库连接,如果需要其他的扩展功能,可以去掉对应的;

 

    找到extension_dir 改为 extension_dir = "C:/php5/ext"。

 

    将C:/php5添加到我的电脑环境变量path中。右键“我的电脑”=》“属性”=》“高级”=》“环境变量”=》“系统变量”=》双击   “path”=>添加“;C:/php5”。

   

    2.2 Nginx配置

 

    打开nginx文件下的conf,用UltraEdit编辑nginx.conf文件,

 

   

#location ~ /.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}

把里面的#去掉。并将/scripts替换为 $document_root
其中root可以随意指定你所要的目录,特别要注意和
location / {
root html;
index index.html index.htm;
}
里面的root保持一致。否则会出错。

 

配置好的配置文件展示:

[php:nogutter] view plain copy
  1. #user  nobody;  
  2. worker_processes  1;  
  3.   
  4. error_log  logs/error.log;  
  5. #error_log  logs/error.log  notice;  
  6. #error_log  logs/error.log  info;  
  7.   
  8. #pid        logs/nginx.pid;  
  9.   
  10.   
  11. events {  
  12.     # 一个进程所处理的最大连接数上限,     
  13.     # 本地开发,不需要默认的 1024,这里改为 64  
  14.     worker_connections  64;  
  15. }  
  16.   
  17.   
  18. http {  
  19.     include       mime.types;  
  20.     default_type  application/octet-stream;  
  21.   
  22.     #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '  
  23.     #                  '$status $body_bytes_sent "$http_referer" '  
  24.     #                  '"$http_user_agent" "$http_x_forwarded_for"';  
  25.   
  26.     #access_log  logs/access.log  main;  
  27.   
  28.     sendfile        on;  
  29.     #tcp_nopush     on;  
  30.   
  31.     #keepalive_timeout  0;  
  32.     keepalive_timeout  65;  
  33.   
  34.     #gzip  on;  
  35.   
  36.     server {  
  37.         listen       80;  
  38.         server_name  localhost;  
  39.   
  40.         #charset koi8-r;  
  41.   
  42.         #access_log  logs/host.access.log  main;  
  43.   
  44.         location / {  
  45.             root   html;  
  46.             index  index.html index.htm;  
  47.             # 3. 没有索引页时,罗列文件和子目录     
  48.             autoindex on;     
  49.             autoindex_exact_size on;     
  50.             autoindex_localtime on;     
  51.         }  
  52.   
  53.         #error_page  404              /404.html;  
  54.   
  55.         # redirect server error pages to the static page /50x.html  
  56.         #  
  57.         error_page   500 502 503 504  /50x.html;  
  58.         location = /50x.html {  
  59.             root   html;  
  60.         }  
  61.   
  62.         # proxy the PHP scripts to Apache listening on 127.0.0.1:80  
  63.         #  
  64.         #location ~ /.php$ {  
  65.         #    proxy_pass   http://127.0.0.1;  
  66.         #}  
  67.   
  68.         # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000  
  69.         #  
  70.         location ~ /.php$ {  
  71.             root           html;  
  72.             fastcgi_pass   127.0.0.1:9000;  
  73.             fastcgi_index  index.php;  
  74.             fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;  
  75.            # fastcgi_split_path_info     ^(.+/.php)(.*)$;     
  76.            # fastcgi_param PATH_INFO     $fastcgi_path_info;   
  77.             include        fastcgi_params;  
  78.         }  
  79.   
  80.         # deny access to .htaccess files, if Apache's document root  
  81.         # concurs with nginx's one  
  82.         #  
  83.         #location ~ //.ht {  
  84.         #    deny  all;  
  85.         #}  
  86.     }  
  87.   
  88.   
  89.     # another virtual host using mix of IP-, name-, and port-based configuration  
  90.     #  
  91.     #server {  
  92.     #    listen       8000;  
  93.     #    listen       somename:8080;  
  94.     #    server_name  somename  alias  another.alias;  
  95.   
  96.     #    location / {  
  97.     #        root   html;  
  98.     #        index  index.html index.htm;  
  99.     #    }  
  100.     #}  
  101.   
  102.   
  103.     # HTTPS server  
  104.     #  
  105.     #server {  
  106.     #    listen       443;  
  107.     #    server_name  localhost;  
  108.   
  109.     #    ssl                  on;  
  110.     #    ssl_certificate      cert.pem;  
  111.     #    ssl_certificate_key  cert.key;  
  112.   
  113.     #    ssl_session_timeout  5m;  
  114.   
  115.     #    ssl_protocols  SSLv2 SSLv3 TLSv1;  
  116.     #    ssl_ciphers  ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;  
  117.     #    ssl_prefer_server_ciphers   on;  
  118.   
  119.     #    location / {  
  120.     #        root   html;  
  121.     #        index  index.html index.htm;  
  122.     #    }  
  123.     #}  
  124.   
  125. }  

    

 

   

3、用命令行启动。
随便找一个目录,桌面也可以,常用的即可。新建文本文件start_nginx.bat批处理文件来启动nginx和php。

RunHiddenConsole.exe 是一个用来隐藏 DOS 窗口的小程序,可以在这里下载。

内容如下

 

@echo off
REM Windows 下无效
REM set PHP_FCGI_CHILDREN=5

REM 每个进程处理的最大请求数,或设置为 Windows 环境变量
set PHP_FCGI_MAX_REQUESTS=1000

echo Starting PHP FastCGI…
RunHiddenConsole C:/php5/php-cgi.exe -b 127.0.0.1:9000 -c C:/php5/php.ini

echo Starting nginx…
RunHiddenConsole C:/nginx/nginx.exe -p C:/nginx

 

RunHiddenConsole.exe 是一个用来隐藏 DOS 窗口的小程序,在上面步骤中放在php5目录下。

 

点击start_nginx.bat 。任务管理器查看进程,有php-cgi.exe和nginx.exe进程。

要是没有nginx进程,可以手工启动。

 

到nginx目下直接运行“nginx.exe”。

 

 


同样 stop_nginx.bat,用来关闭:
@echo off
echo Stopping nginx…
taskkill /F /IM nginx.exe > nul
echo Stopping PHP FastCGI…
taskkill /F /IM php-cgi.exe > nul
exit

 

 

4、测试。

 

在c:/nginx/html下编写test.php

[php] view plain copy
  1. <?php  
  2. echo phpinfo();  
  3. ?>  

    

  

  

你可能感兴趣的:(Windows下配置Nginx+php+mysql)