nginx配置檔案實現vue重定向訪問

2022-10-08 16:57:16 字數 2022 閱讀 3290

注:yum安裝過程中如果報錯except ioerror, e invalid syntax並且重新安裝了python3,那麼是因為當前yum不支援python3,解決方案1:公升級yum;2:修改/usr/bin/yum檔案的開頭改為#! /usr/bin/python2

# 檢視安裝位置

whereis

nginx

# 測試配置檔案並檢查配置檔案

nginx -t

如果報錯error while loading shared libraries: libgd.so.2: cannot open shared object,需要安裝libgd

yum

install gd

當執行

nginx -t

出現

nginx: the configuration file /www/server/nginx/conf/nginx.conf syntax is ok

nginx: configuration

file /www/server/nginx/conf/nginx.conf test is successful

說明安裝成功。

# 根請求會指向的頁面

location /

#由於路由的資源不一定是真實的路徑,無法找到具體檔案

# 所以需要將請求重寫到 index.html 中,然後交給真正的 vue 路由處理請求資源location @router

# 將所有的 http:

//****: 80/api/ 開頭的請求都**到下面 中

#這樣就實現了前後端分離,前端請求由nginx直接指向vue檔案,vue中的後端請求由nginx**到後端的**中# 為了防止在訪問頁面時請求就被 nginx ****,這裡需要更具體的配置,才能和前端訪問請求區分開

location /api/

######這裡往上#######

access_log /www/wwwlogs/access.log;

}include /www/server/panel/vhost/nginx/*

.conf;

}

開啟防火牆埠

firewall-cmd --zone=public --add-port=7979/tcp --permanent

# 過載

firewall-cmd --reload

nginx重啟

nginx -s reload

nginx配置檔案

執行使用者 user nobody nobody 啟動程序 worker processes 2 全域性錯誤日誌及pid文件 error log logs error.log notice pid logs nginx.pid 工作模式及連線數上限 events 設定http伺服器,利用他的反向 功...

nginx 配置檔案

ps nginx使用有兩三年了,現在經常碰到有新使用者問一些很基本的問題,我也沒時間一一回答,今天下午花了點時間,結合自己的使用經驗,把nginx的主要配置引數說明分享一下,也參考了一些網路的內容,這篇是目前最完整的nginx配置引數中文說明了。更詳細的模組引數請參考 定義nginx執行的使用者和使...

Nginx 配置檔案

2 配置詳解 3 配置備份 nginx 配置檔案主要分為六個區域 nginx worker 程序的執行使用者以及使用者組,預設由 nobody 賬號執行。user nobody nginx 要開啟的子程序數。每個 nginx 程序平均耗費 10m 12m 記憶體,一般指定 1 個程序就足夠了。若是多...