Windows下Nginx+PHP5的安裝與配置方法

Nginx 是一個輕量級的高性能 Http WebServer,以事件驅動方式編寫,所以相比 Apache 而言,Nginx 更加穩定、性能更好,並且配置簡單,資源佔用較低。如下是我在 Windows 2003 安裝中 Nginx 和 PHP5.2 的步驟,但 windows版本的nginx性能要比Linux/Uninx版本的Nginx差太多

安裝 PHP5
首先,從 http://www.php.net/downloads.php 下 載最新的 PHP5.2.9-2 Windows 版本,解壓至 C:\php,把壓縮包中的 php.ini-recommended,改名爲 php.ini,而後打開修改幾個選項:php

error_reporting = E_ALL
display_errors = On
extension_dir = "C:\php\ext"

; 動態擴展,能夠根據須要去掉 extension 前面的註釋 ;
; 如加載 PDO, MySQL
extension=php_pdo.dll
extension=php_pdo_mysql.dll

; CGI 設置
cgi.force_redirect = 1
cgi.fix_pathinfo = 1
cgi.rfc2616_headers = 1
html

PHP 加載擴展須要注意依賴性,好比 php_exif.dll 須要 php_mbstring.dll,你必需要把 php_mbstring.dll 放在 php_exif.dll 前面才能加載成功。有些擴展依賴額外的 dll 文件,如 PHP 5.0+ ,php_mysqli.dll 依賴 libmysql.dll,而 php_oci8.dll,你則須要安裝 Oracle 8 的客戶端。若是你對這些依賴性不是太瞭解,能夠參考一下安裝包中的 install.txt 文件。mysql

依賴文件的搜索順序:首先是 php.exe 所在的目錄,若是是 ISAPI 模式,那麼會搜索 Web Server 的啓動位置,好比 Apache 的 bin 目錄;其次是 Windows PATH 環境變量中的目錄。這裏不要復 制任何文件到 Windows 目錄中,有必要的話,能夠把 C:\php5 加到 PATH 中,有利於之後 PHP 的升級。nginx

安裝 Nginx
從 v0.7.52 開始,Nginx 開始發佈 Windows 版本的 Nginx,你能夠在其官方網站上面下載:http://nginx.net
我使用的是 0.8.37,下載好之後,解壓釋放文件到 D:\nginx。sql

配置 PHP FastCGI
Nginx 須要和 FastCGI Server 配合才能處理請求,有兩種方式運行 PHP FastCGI Server,一種就是使用 PHP 內置的 FastCGI 管理器:
命令行下面執行c:/php/php-cgi.exe -b 127.0.0.1:9000 -c c:/php/php.ini以啓動PHP FastCGI小程序

修改 Nginx 的配置文件 d\nginx\conf\nginx.conf,找到 php 相關的部分,修改以下:
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
location ~ \.php$ {
root d:/public_html;
include php.conf;
}

root 也就是 $document_root 指的是你的 php scripts 根目錄,設置爲你的網站根目錄。在 Windows 下,須要注意的是 root 的路徑,最好使用 "/" 做爲路徑分隔符,而不是 Windows 默認的 "\",不然容易出問題,好比,這個路徑:d:\public_html\test,就不會起做用,Nginx 會拋出 500 錯誤,緣由是 \test 中 \t 被解析爲製表符。固然再加上一個反斜槓轉義也是能夠的,如:d:\\public_html\\test。windows

php.conf 是我本身建立的用來保存 php 配置的文件,其實裏面只有 3 行命令:
# 鏈接到本機 9000 端口,這裏的端口是指 PHP FastCGI Server 開啓的端口,
# 請與 php-cgi.exe 開啓的端口保持一致
# 當 Nginx 收到 php 文件的請求時,會自動轉發到 PHP FastCGI Server
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi_params;

之因此要建立一個獨立的 php.conf 保存配置爲了精簡 nginx.conf,當在 nginx 中配置多個虛擬主機時,每一個虛擬主機都須要配置 php,那麼主配置文件就會變得重複、臃腫。安全

須要修改一下 d:\nginx\conf\fastcgi_params 文件,加入一行:
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

而且修改 php.ini,設置 cgi.fix_pathinfo = 1,這很是重要,不然 PHP 將沒法找到須要處理的 php 腳本。服務器

一些其餘的設置,主服務器:
# 默認開啓的進程數
worker_processes 1;
error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
# 一個進程所處理的最大鏈接數上限,
# 本地開發,不須要默認的 1024,這裏改成 64
worker_connections 64;
}
ide

當某個目錄下面不存在默認 index.php index.html 等首頁文件時,Nginx 會拋出 403 ERROR,若是你須要羅列此目錄,則能夠在 http {… } 中加入以下命令:
autoindex on;
autoindex_exact_size on;
autoindex_localtime on;

start_nginx.bat,用於同時啓動 PHP FastCGI 和 Nginx:
@echo off
echo Starting PHP FastCGI...
RunHiddenConsole c:/php/php-cgi.exe -b 127.0.0.1:9000 -c c:/php/php.ini
echo Starting nginx...
d:/nginx/nginx.exe
RunHiddenConsole.exe 是一個用來隱藏 DOS 窗口的小程序,能夠在這裏下載RunHiddenConsole.zip (1.01 kb)
start_nginx.bat 開啓後,也會有 DOS 窗口,可是能夠安全的關掉,並不會關閉 Nginx 和 php-cgi.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 到這裏基本配置完畢了。

相關文章
相關標籤/搜索