從git上clone下來nginx的**
修改auto/cc/conf檔案,ngx_compile_opt="-c -g3"
加上-g3。(一般是-g就可以了, -g3主要是為了除錯nginx時, 可以用gdb展開一些巨集:展開巨集的命令: macro expand 《巨集》)
在nginx目錄下執行:./auto/configure - -prefix=《當前目錄即可(可用pwd檢視)> - -with-debug。(注意: 目錄必須是絕對路徑, 採用相對路徑時會報open logs/error.log 失敗。 具體為什麼還有待我進一步研究閱讀o(∩_∩)o)
make
配置nginx以非守護程序方式啟動 daemon off;
配置nginx以單程序方式啟動 master_process off; worker_processes 1;
然後就可以盡情的用gdb對nginx進行解剖了。
在nginx下建立乙個modules目錄, 用於存放rtmp服務的模組:mkdir modules && cd modules
git上clone下來rtmp服務的模組 :git clone [email protected]:arut/nginx-rtmp-module.git
在nginx目錄下配置:
配置conf檔案:
rtmp
}}
推一路流:
./ffmpeg -re -stream_loop -1 -i zhiqu.mp4 \
-vcodec copy -acodec copy \
-f flv -y "rtmp:"
nginx 環境配置
1。nginx 安裝 2.配置nginx支援php fpm模組 2.2 安裝命令 tar xvzf php 7.0.5.tar.gz cd php 7.0.5 yum y install libxml2 yum y install libxml2 develyum y install openssl...
nginx 環境配置
近來,nginx以其高效能吸引大批web開發者,各大門戶 大多都採用nginx作為web伺服器,關於nginx的介紹,網上已有大量文 章,筆者就不在此贅述,關於linux上nginx的搭建網上也有大量文章,但在windows上卻為數不多,今天就為大家簡單介紹windows7環境 下nginx php...
linux lnmp環境除錯環境配置
catch workers output yes error log log error logdisplay errors on 決定是否將錯誤資訊作為輸出的一部分顯示到螢幕,或者對使用者隱藏而不顯示。display startup errors on 即使 display errors 設定為開...