Nginx配置多個vue前端專案 後端專案

2022-04-11 03:03:29 字數 1236 閱讀 1549

我在之前已經使用docker+nginx部署乙個vue專案了,大概是這樣的

# conf.d default.conf

server

#error_page 404 /404.html;

# redirect server error pages to the static page /50x.html

#error_page 500 502 503 504 /50x.html;

location = /50x.html

# proxy the php scripts to apache listening on 127.0.0.1:80

##location ~ \.php$

# pass the php scripts to fastcgi server listening on 127.0.0.1:9000

##location ~ \.php$

# deny access to .htaccess files, if apache's document root

# concurs with nginx's one

##location ~ /\.ht

}

接著,我想用乙個nginx部署多個專案

再配置乙個後端專案

首先試了以下直接用路徑來配置,貌似不行

location /n-chat
直接報錯,找不到路徑

之後試了監聽不同的埠來實現,新增了如下的配置

如何在nginx中配置多個前端專案

首先安裝好ngnix,找到目錄下的html資料夾,將自己打包好的前端專案放在html資料夾下,如下圖 找到conf nginx.conf檔案,以我框選出來的為例,配置好想設定的埠號,對應的資料夾名稱。重啟nginx,訪問http localhost 2456即可 新的專案複製貼上 更改埠號和對應的資...

nginx前端配置

有時候為了提測或者更方便前端人員管理內網環境下的前端專案,前端需要自行配置nginx伺服器,方便其他人員訪問 連線nginx伺服器 命令ssh username 192.168.2.94或工具iis7伺服器管理 xshell 找到路徑上傳usr local nginx 命令put path工具 找到...

前端nginx配置

433埠部分的配置為ssl證書配置。其中,ssl certificate與ssl certificate key欄位對應證書所在目錄與證書名 其他配置字段參考官網 server location中以下內容控制http強制轉為https server location中以下內容history路由處理,...