這篇文章給大家分享的是有關(guān)怎么在一臺(tái)vps上面部署vue+MongoDB+express項(xiàng)目的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。
創(chuàng)新互聯(lián)專(zhuān)業(yè)提供成都主機(jī)托管四川主機(jī)托管成都服務(wù)器托管四川服務(wù)器托管,支持按月付款!我們的承諾:貴族品質(zhì)、平民價(jià)格,機(jī)房位于中國(guó)電信/網(wǎng)通/移動(dòng)機(jī)房,成都二樞服務(wù)器租用托管服務(wù)有保障!
項(xiàng)目: vue + express + mongodb
項(xiàng)目前后分離部署在一臺(tái)服務(wù)器上面
express端口:3000
mongodb端口:27017
vue端口:本地是8080 服務(wù)端是:80
本地開(kāi)發(fā)配置
本地開(kāi)發(fā)基于vue cli 端口是 8080如果請(qǐng)求api的時(shí)候在前綴加上localhost:3000會(huì)提示跨域問(wèn)題,我們可以使用下面方式來(lái)解決這個(gè)問(wèn)題
在vue項(xiàng)目路徑找到這個(gè)文件 /vue-item/config/index.js 找到這行代碼:
proxyTable: {}
添加如下配置
demo:
proxyTable: { '/v1/**':{ target: 'http://localhost:3000/', pathRewrite: { '^/v1': '/' } } }
v1 是我給api自動(dòng)添加的前綴
這個(gè)前綴可以使用 axios 配置添加
在main.js 主入口文件添加
如下
import apiConfig from '../config/api.config' // import axios import Axios from 'axios' import VueAxios from 'vue-axios' Vue.use(VueAxios, Axios) // Axios.defaults.baseURL = apiConfig.baseUrl; Axios.defaults.baseURL = 'v1/' 這樣也ok的
api.config
判斷是開(kāi)發(fā)模式還是本地模式,其實(shí)不需要這么麻煩 直接
const isProdMode = Object.is(process.env.NODE_ENV, 'production') module.exports = { baseUrl: isProdMode ? 'api.shudong.wang/v1/' : 'v1/' }
如果把a(bǔ)xios 配置了自動(dòng)前綴
每次訪問(wèn)的時(shí)候
data(){ return { articleList:Object } }, mounted: function(){ this.getArticleList() }, methods:{ getArticleList(){ console.log(111111111) this.$http.get("/article/list") // this.$http axios使用的一種方式 .then((response)=>{ console.log(response.data) let res = response.data; this.articleList = res.data; }) .catch((error) =>{ console.log(error) }) } },
上面請(qǐng)求的例子中相當(dāng)于訪問(wèn): localhost:8080/v1/article/list
這樣就可以解決跨域問(wèn)題
其實(shí)最終訪問(wèn)的是 localhost:3000/article/list express的api
這個(gè)v1只是api版本的標(biāo)識(shí),如果想帶著,并且api是可以v1版本方式訪問(wèn)的,把代理的路徑重新規(guī)則去掉就可以
操作如下:
proxyTable: { '/v1/**':{ target: 'http://localhost:3000/', //pathRewrite: { //這個(gè)規(guī)則去掉 // '^/v1': '/' //} }, '/goods/*':{ target:'http://localhost:3000' }, '/users/**':{ target:'http://localhost:3000' } }
服務(wù)端部署
本地可以使用proxyTable 解決跨域問(wèn)題,那么服務(wù)端怎么解決跨域問(wèn)題呢?
answer:使用nginx反向代理
nginx配置: 仔細(xì)分析一下看看是否適合自己的業(yè)務(wù)場(chǎng)景
server { listen 80; #listen [::]:80; server_name zhenfan.shudong.wang ; # 你的域名不需要加http index index.html index.htm index.php default.html default.htm default.php; root /home/wwwroot/zhenfan/dist; include none.conf; #error_page 404 /404.html; # Deny access to PHP files in specific directory #location ~ /(wp-content|uploads|wp-includes|images)/.*\.php$ { deny all; } include enable-php.conf; location /v1 { proxy_pass http://127.0.0.1:3000/; # 當(dāng)訪問(wèn)v1的時(shí)候默認(rèn)轉(zhuǎn)發(fā)到 3000端口 } location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ { expires 30d; } location ~ .*\.(js|css)?$ { expires 12h; } location ~ /.well-known { allow all; } location ~ /\. { deny all; } access_log off; }
關(guān)于express鏈接mongodb可以直接填寫(xiě)端口號(hào),不存在跨域問(wèn)題,直接 127.0.0.1:27017就ok,
感謝各位的閱讀!關(guān)于“怎么在一臺(tái)vps上面部署vue+mongodb+express項(xiàng)目”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!