1. 程式人生 > 實用技巧 >在window下部署專案

在window下部署專案

前端VUE專案部署

下載Nginx

下載完成後進行解壓並修改nginx.conf檔案

server {
    listen       80;
    server_name  localhost;

    #charset koi8-r;

    #access_log  logs/host.access.log  main;

    location / {
        root   html;#將Vue打包後的檔案放到此目錄下
        index  index.html index.htm;
        try_files $uri $uri/ /index.html;
    }
    location /api/ {#代理路徑
        proxy_pass http://127.0.0.1:8001;
        proxy_cookie_path / /api;
        proxy_redirect default;
        rewrite ^/api/(.*) /$1 break;
    }

訪問127.0.0.1(根據實際情況而定)出現你的首頁說明成功

後端專案部署

打包

由於我的專案為分散式專案所以為了後臺執行並省事,此處使用的指令碼執行:

@echo off

start javaw -jar D:\PowermonRun\xxxxxxx-1.0-SNAPSHOT.jar
start javaw -jar D:\PowermonRun\xxxxxxx-1.0-SNAPSHOT.jar
start javaw -jar D:\PowermonRun\xxxxxxx-1.0-SNAPSHOT.jar
start javaw -jar D:\PowermonRun\xxxxxxx-1.0-SNAPSHOT.jar

exit