您好,登錄后才能下訂單哦!
本篇內容介紹了“如何使用Nginx ”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
針對 Unix 環境
從 Nginx 官網 出下載想要編譯版本的 Nginx,Nginx 官方提供三個版本:
Mainline version
主線版本,功能較新,穩定性較 Stable version 稍差,建議學習使用該版本,實際生產使用 Stable version。
Stable version
穩定版本
Legacy versions
歷史版本
wget http://nginx.org/download/nginx-1.17.4.tar.gz tar -zxvf nginx-1.17.4.tar.gz cd nginx-1.17.4
編譯時的依賴庫以及針對操作系統特性選擇庫
英文版 Nginx 各版本變更說明
俄文版 Nginx 各版本變更說明(Nginx 作者是俄羅斯人)
配置文件目錄
編譯配置,編譯前生成中間文件方便編譯
主要有編譯路徑配置、某些功能開關及模塊配置
--prefix
設置服務器存放地址,也是其他未配置路徑的目錄的默認根目錄
--XXX-path
代表設置 XXX 目錄的地址
--with-XXX_module
代表啟用某些模塊
--without-XX_module
代表禁用某些模塊,這些模塊時 Nginx 默認會編譯的模塊
還有一些其他參數可以參考可以參考 Ngxin 官方文檔
vim 提示插件以及一些提升使用 Nginx 效率的工具腳本
配置 vim 提示
cp -r contrib/vim ~/.vim
針對不同層次結構以及不同關鍵字顏色區別會更明顯
存放 index.html(Nginx 默認歡迎頁)和 50x.html(Nginx 默認錯誤頁)
index.html:
50x.html:
許可證信息
Nginx 為 linux 提供的幫助文件
可以使用命令查看(與編譯后使用 nginx -h
相比內容更豐富)
man man/nginx.8
自述文件
源碼
首先需要使用 configure
進行配置,一般只設置 --prefix
即可:
./configure --prefix=/home/sanchan/nginx
配置會輸出配置簡要說明:
Configuration summary + using system PCRE library + OpenSSL library is not used + using system zlib library nginx path prefix: "/home/sanchan/nginx" nginx binary file: "/home/sanchan/nginx/sbin/nginx" nginx modules path: "/home/sanchan/nginx/modules" nginx configuration prefix: "/home/sanchan/nginx/conf" nginx configuration file: "/home/sanchan/nginx/conf/nginx.conf" nginx pid file: "/home/sanchan/nginx/logs/nginx.pid" nginx error log file: "/home/sanchan/nginx/logs/error.log" nginx http access log file: "/home/sanchan/nginx/logs/access.log" nginx http client request body temporary files: "client_body_temp" nginx http proxy temporary files: "proxy_temp" nginx http fastcgi temporary files: "fastcgi_temp" nginx http uwsgi temporary files: "uwsgi_temp" nginx http scgi temporary files: "scgi_temp"
配置生成的中間文件會放置到 objs目錄下,有興趣的小伙伴可以看下。
然后就可以進行編譯了:
make
編譯會在 objs 目錄下生產 nginx 、nginx.8 及 ngx_modules.o,如果是升級 Nginx 可以將這些文件替換舊文件,如果是全新安裝則執行:
make install
這樣在之前配置的路徑 /home/sanchan/nginx
中就可以看到 Nginx 相關文件了。
sbin 為 Nginx 二進制執行文件目錄
logs 為 Nginx 日志目錄
conf 及 html 與下載的 Nginx 源碼中目錄是一致的
“如何使用Nginx ”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。