nginx 基本命令:php
查看Nginx的版本號:nginx -Vhtml
啓動Nginx:start nginxmysql
快速中止或關閉Nginx:nginx -s stopnginx
正常中止或關閉Nginx:nginx -s quitsql
配置文件修改重裝載命令:nginx -s reload數據庫
查看windows任務管理器下Nginx的進程命令:tasklist /fi "imagename eq nginx.exe"windows
一、下載nginx天然沒必要說了,本身百度吧網站
二、解壓下載文件,cmd命令尋找nginx安裝文件,執行start nginxui
三、localhostspa
四、安裝php(nginx配置啓動php,以cgi運行php)
nginx配置文件是conf文件夾裏的nginx.conf
查找文件字符
location /{
root html;
index index.html index.htm;
}
修改成:
location / {
root D:/wnmp/nginx-1.5.8/html; #網站根目錄
index index.html index.htm inde.php; #添加index.php的默認頁。
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 #
#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;
#}
先將前面的「#」去掉,一樣將root html;改成root C:/wnmp/nginx-1.5.8/html;。再把「/scripts」改成「$document_root」,這裏的 「$document_root」就是指前面「root」所指的站點路徑,這是改完後的:
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 #
#location ~ \.php$ {
# root C:/wnmp/nginx-1.5.8/html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
# include fastcgi_params;
#}
五、配置php.ini
搜索「extension_dir」,找到: e;xtension_dir = "ext" 先去前面的分號再改成 extension_dir = "C:\wnmp\php\ext"
搜索「date.timezone」,找到:;date.timezone = 先去前面的分號再改成 date.timezone = Asia/Shanghai
搜索「enable_dl」,找到:enable_dl = Off 改成 enable_dl = On
搜索「cgi.force_redirect」 ;cgi.force_redirect = 1 先去前面的分號再改成 cgi.force_redirect = 0
搜索「fastcgi.impersonate」,找到: ;fastcgi.impersonate = 1 去掉前面的分號
搜索「cgi.rfc2616_headers」,找到:;cgi.rfc2616_headers = 0 先去前面的分號再改成 cgi.rfc2616_headers = 1
搜索「php_mysql」,找到:」extension=php_mysql.dll和extension=php_mysqli.dll 去掉前面的「;」extension=php_mysql.dll和extension=php_mysqli.dll (支持MYSQL數據庫)
其餘的配置請按照本身的需求更改。
六、
試運行以及編輯運行配置文件
C:\wnmp\php-5.5.7-nts-Win32-VC11-x86>php-cgi.exe -b 127.0.0.1:9000-c C:\wnmp\php-5.5.7-nts-Win32-VC11-x86\php.ini
從新運行nginx.exe。
C:\wnmp\nginx-1.5.8\html下新建一個phpinfo.php,
<?php phpinfo(); ?>
下載一個RunHiddenConsole.exe (百度)
開啓php-cgi和nginx.exe,保存爲start.bat
@echo off
echo Starting PHP FastCGI...
C:\wnmp\nginx\RunHiddenConsole.exe C:\wnmp\PHP\php-cgi.exe -b 127.0.0.1:9000-c D:\PHP\php.ini
echo Starting nginx...
C:\wnmp\nginx\RunHiddenConsole.exe D:/nginx/nginx.exe -p D:/nginx
終止php和nginx進程,如stop.bat
@echo off
echo Stopping nginx...
taskkill /F /IM nginx.exe > nul
echo Stopping PHP FastCGI...
taskkill /F /IM php-cgi.exe > nul
exit
start.bat和stop.bat要和RunHiddenConsole.exe放於同一個目錄