Nginx乙個server配置多個location

2021-09-29 23:02:05 字數 380 閱讀 9944

在配置檔案中增加多個location,每個location對應乙個專案

比如使用8066埠,location / 訪問官網; location /demo訪問培訓管理系統

配置多個站點

我選擇了配置多個location。

location / 

location /demo

配置完以後訪問。http://***x/train 提示404

找了好久才搞明白, location如果乙個特定的url 要使用別名,不能用root,alias指定的目錄是準確的,root是指定目錄的上級目錄,改動後即可以使用了

location /train

nginx 中server配置說明

server error page 404 404.html 指定錯誤頁面 redirect server error pages to the static page 50x.html 把後台錯誤重定向到靜態的50x.html頁面 error page 500 502 503 504 50x.ht...

Nginx學習 安裝 命令 server配置

注意 以下內容是基於舊版nginx,配置資訊位置和檔案目錄和最新版不一致,但依葫蘆畫瓢是一樣的 nginx 的安裝 安裝準備 nginx依賴於pcre庫,要先安裝pcre yum install pcre pcre devel cd usr local src wget tar zxvfnginx ...

nginx中server配置簡單示例

ubuntu14.04下的nginx配置 配置檔案nginx.conf server error page 500 502 503 504 50x.html location 50x.html 1 上述配置中第乙個location中的root指定與nginx同目錄下的html目錄,index指定預設...