接着上篇——簡單的springboot-vue先後端分離登陸Session攔截的demo,其中跨域是經過springboot後端全局設置的,可是碰到了奇怪的問題,用了個不優雅的方式解決。
因而想到使用Nginx跨域應該就不會如此了。php
http://nginx.org/ 下載穩定版,解壓縮。
查看配置文件 /nginx-1.16.0/conf/nginx.conf
:html
#gzip on; server { listen 80; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / { root html; index index.html index.htm; } #error_page 404 /404.html;
默認監聽端口是80,/
是相對路徑下的html
目錄。前端
netstat -ano|findstr 3306
tasklist|findstr 3448
taskkill /pid #{pid} /F
tasklist|findstr mysql
肯定端口沒被佔用後,默認的80端口先跑起來。vue
start nginx
,一閃而過正常,==不要使用雙擊exe方式==tasklist|findstr nginx
localhost:80
顯示 Nginx 歡迎頁,OK修改默認80端口爲自定義端口8081mysql
nginx.exe -s reload
nginx經常使用命令(==windows-dos環境加.exe後綴,好比 nginx.exe -t==)
(cd 到安裝跟目錄執行命令,好比 xxx/nginx-1.16.0/)ios
start nginx 啓動 nginx -v 查看Nginx的版本號 nginx -t 檢查配置文件的有效性 nginx -s 當即關閉 nginx -s quit 處理完當前的請求後關閉 nginx -s reload 修改完配置文件後重載 nginx -s reopen 打開日誌文件
打包部署vue-cli項目nginx
location / { root html/dist; index index.html index.htm; }
nginx.exe -t
,重載配置nginx.exe -s reload
axios.defaults.baseURL
,baseURL的做用也交給Nginx的proxy_pass。#user nobody; # 啓動多worker進程 #worker_processes 1; worker_processes auto; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; #access_log logs/access.log main; sendfile on; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; # 啓用gzip壓縮 gzip on; #gzip on; server { # nginx服務器對外8081端口 listen 8081; server_name localhost; #charset koi8-r; # 日誌輸出 access_log logs/myvue.access.log main; #access_log logs/host.access.log main; # 靜態文件配置 location / { root html/dist; index index.html index.htm; } #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 { root html; } # 反向代理springboot接口服務 location /api/ { # 前端請求: /api/login 代理後: http://127.0.0.1:8080/login proxy_pass http://127.0.0.1:8080/; # 解決springboot中獲取遠程ip的問題 proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_http_version 1.1; proxy_set_header Connection ""; } # proxy the PHP scripts to Apache listening on 127.0.0.1:80 # #location ~ \.php$ { # proxy_pass http://127.0.0.1; #}
proxyTable
,開發環境本地調試用)proxy_pass
,開發到上線)addCorsMappings
一勞永逸,前端無關性)springboot
)配置跨域是很方便的Windows-dos下使用 nginx -s stop; nginx -s reload
等喜聞樂見命令時,報找不到命令。spring
上面通用的是Linux環境的,windows-dos下使用這種
nginx.exe -s stop
。sql