LNMP框架的搭建(nginx的安裝與配置)

2021-08-02 16:42:32 字數 991 閱讀 8910

nginx 是乙個高效能的web伺服器,其主要的特點在於能夠解決超高併發訪問的問題,同時nginx也擁有負載均衡和反向**的能力。這也是我們搭建lnmp的核心軟體之一。

1.解決安裝依賴

yum install gcc pcre-devel openssl-devel

-y

2.開始安裝選擇的安裝目錄是/usr/local/lnmp/nginx,開啟多執行緒,支援https,支援http code

tar zxf nginx-1.12

.0.tar.gz

cd nginx-1.12

.0./configure --prefix=/usr/local/lnmp/nginx --with-threads --with-http_ssl_module --with-http_stub_status_module #根據需要加上相應的模組,需要值得說的是nginx每次新增新模組都要重新編譯

make

make install

此時在/usr/local/lnmp/nginx下就能看到nginx的檔案,其中html目錄就是nginx的發布目錄;conf/nginx.conf是nginx的主配置檔案。

3.啟動調整

ln -s /usr/local/lnmp/nginx/sbin/nginx /bin/nginx #建立連線檔案,方便操作

nginx #啟動

netstat -antple|grep 80

#檢視埠是否開啟

4.訪問測試

至此,我們的nginx已經安裝成功,下面就開始簡單的配置以下nginx吧!

搭建LNMP架構 Nginx 配置

lnmp平台就是linux ngnix mysql php的組合架構,需要linux伺服器 mysql資料庫 php解析環境。1 安裝編譯工具 準備好相關的壓縮檔案,並共享出來,然後進行掛載,再進行壓縮。root localhost systemctl stop firwalld.service 關...

LNMP環境搭建(一 nginx)

1.從nginx官網獲取原始碼包 cd usr local src wget 2.解壓原始碼包 tar xf nginx 1.10.3.tar.gz 3.進入軟體安裝資料夾 cd nginx 1.10.3 4.建立nginx使用者,如果已存在可忽略此步驟 groupadd r nginx usera...

LNMP之nginx的基本配置

注 nginx 的nginx.conf檔案中 listen監控的埠要和 php fpm listen的監控埠一致,這樣就沒有502的問題。1.nginx使用者認證 location admin php 2.網域名稱跳轉301 302重定向 server name www.test.com www.a...