window + nginx-rtmp + php-cgi 伺服器搭建

penguinSeven發表於2016-10-12

1、首先需要準備的應用程式包。

  nginx : nginx-rtmp-win32nginx/Windows-1.0.4 (無rtmp模組)

  php:php-5.2.16-nts-Win32-VC6-x86.zip (nginx下php是以FastCGI的方式執行,所以我們下載非執行緒安全也就是nts的php包)

  RunHiddenConsole: RunHiddenConsole.zip(用於cmd 非阻塞執行程式)

2、安裝與配置。

 1)php的安裝與配置。

  直接解壓下載好的php包,到D盤wnmp目錄(D:wnmp),這裡把解壓出來的資料夾重新命名成php5。進入資料夾修改php.ini-recommended檔案為php.ini,並用Editplus或者Notepad++開啟來。找到

擴充套件目錄(去掉註釋)

;extension_dir = "ext"

mysql 擴充套件(去掉註釋)

;extension=php_mysql.dll
;extension=php_mysqli.dll

前面指定了php的ext路徑後,只要把需要的擴充套件包前面所對應的“;”去掉,就可以了。這裡開啟php_mysql.dll和php_mysqli.dll,讓php支援mysql。當然不要忘掉很重要的一步就是,把php5目錄下的libmysql.dll檔案複製到C:Windows目錄下,也可以在系統變數裡面指定路徑,當然這裡我選擇了更為方便的方法^_^。

到這裡,php已經可以支援mysql了。

接下來我們來配置php,讓php能夠與nginx結合。找到(去掉註釋)

;cgi.fix_pathinfo=1

這一步非常重要,這裡是php的CGI的設定。

2)nginx的安裝與配置。

  把下載好的nginx-1.0.4的包同樣解壓到D盤的wnmp目錄下,並重新命名為nginx。接下來,我們來配置nginx,讓它能夠和php協同工作。進入nginx的conf目錄,開啟nginx的配置檔案nginx.conf,找到


worker_processes  1;

error_log  logs/error.log debug;

events {
    worker_connections  1024;
}

rtmp {
    server {
        listen 1936;

        application live {
            live on;
            pull rtmp://live.hkstv.hk.lxdns.com/live/hks live=1 name=1;
        }
    }
}

http {
    
    access_log logs/access.http.log;
    server_tokens off;
    default_type application/octet-stream;
    client_max_body_size 10G;
    sendfile on;
    
    include other.conf;
}

當前目錄建立 other.conf

server {
        listen      7777;
        server_name live_stream;
        root www;
        
        index index.php;

        location / {
            if (!-e $request_filename) {
                rewrite ^(.*)$ /index.php?s=/$1 last; # rewrite mode
                #rewrite ^(.*)$ /index.php/$1 last; # pathinfo mode
            }
        }
        
        location ~ .php$ {            
            fastcgi_hide_header X-Powered-By;
            fastcgi_pass 127.0.0.1:9000;
            fastcgi_split_path_info ^(.+.php)(.*)$;
            fastcgi_param PATH_INFO $fastcgi_path_info;
            fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            include fastcgi_params;
            fastcgi_connect_timeout 300;
            fastcgi_send_timeout 300;
            fastcgi_read_timeout 300;

        }
    }

儲存配置檔案,就可以了。

  nginx+php的環境就初步配置好了,來跑跑看。我們可以輸入命令

X:wnpphpphp-cgi.exe -b 127.0.0.1:900 -c X:wnpphpphp.ini

雙擊nginx.exe

完成!!!

3.批處理指令碼控制開關伺服器

1.start.cmd

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

REM 每個程式處理的最大請求數,或設定為 Windows 環境變數
set PHP_FCGI_MAX_REQUESTS=1000
 
echo Starting PHP FastCGI...
RunHiddenConsole D:/wnmp/php5/php-cgi.exe -b 127.0.0.1:9000 -c D:/wnmp/php5/php.ini
 
echo Starting nginx...
RunHiddenConsole D:/wnmp/nginx/nginx.exe -p D:/wnmp/nginx

2.end.cmd


@echo off
echo Stopping nginx...  
taskkill /F /IM nginx.exe > nul
echo Stopping PHP FastCGI...
taskkill /F /IM php-cgi.exe > nul
exit

4.填坑

  1. php 檔案無法接收引數,$_GET,$_POST,$_REQUEST,為空

解決辦法:other.conf 檔案中, “include fast_params” nginx官網示例

location ~ .php$ {            
                fastcgi_hide_header X-Powered-By;
                fastcgi_pass 127.0.0.1:9000;
                fastcgi_split_path_info ^(.+.php)(.*)$;
                fastcgi_param PATH_INFO $fastcgi_path_info;
                fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                
                include fastcgi_params; 
                
                fastcgi_connect_timeout 300;
                fastcgi_send_timeout 300;
                fastcgi_read_timeout 300;
    
            }

5.參考文獻

1.windows下配置nginx+php環境

相關文章