若以管理系統 專案部署之Linux篇

2021-10-16 17:13:39 字數 2748 閱讀 6718

前兩步和windows下沒有區別

#後端在8080埠

location /prod-api/

#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

}# settings for a tls enabled server.

## server

## error_page 404 /404.html;

# location = /404.html

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

# location = /50x.html

# }

}下面的一些是設定請求頭等,防止出現跨域問題。

然後最下面的proxy_pass就是設定的**後的位址,即你的伺服器上後台介面的url。

通過上面兩個配置就能實現在伺服器上所有的請求

只要是通過

傳送過來的請求全部會被**到

下。這樣就能實現前後端專案的請求**。

若以部署系統參考:若依前後端分離版本,windows下使用nginx**的方式進行部署(全流程,**教程)

部署到linux後nginx報錯

解決辦法:

vim nginx.conf #編輯nginx.conf

# for more information on configuration, see:

# * official english documentation:

# * official russian documentation:

user root; #許可權問題解決辦法,使用root使用者

#後端在8080埠

location /prod-api/

#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

}# settings for a tls enabled server.

## server

## error_page 404 /404.html;

# location = /404.html

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

# location = /50x.html

# }

}

部落格系統專案之專案部署

這裡總結一下,專案的部署執行方式,總有以下幾種 這裡需要注意還要修改resouces下的 static js userspace blogedit.js 和 static js userspace main.js 兩個js檔案中檔案伺服器路徑 構建執行,具體可參考其中的readme,值得注意的一點是...

三 Linux專案部署之基礎專案部署

2.專案執行依賴於jdk的版本,tomcat可指定jdk版本。linux 指定tomcat專案啟動的jdk版本 教程位址 3.專案打包好後,將專案名修改為自己需要訪問的專案名,使用檔案上傳工具 xftp filezilla rz.上傳所打包好的war檔案。1.啟動tomcat容器,cd 到tomca...

flask之專案部署

部署flask專案 專案名為aj這裡寫 片 配置 1.檢查雲伺服器安全組中埠是否開放 2.配置環境 nginx的配置conf位置 etc nginx nginx.conf 啟動 systemctl start nginx systemctl restart nginx 重啟 systemctl st...