events {
worker_connections 1024;
}
http {
server {
listen 8873;#預設埠是80,如果埠沒被佔用可以不用修改
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
root E:/工作文件/HaiKouZrVue/dist;#vue專案的打包後的dist
location / {
try_files $uri $uri/ @router;#需要指向下面的@router否則會出現vue的路由在nginx中重新整理出現404
index index.html index.htm;
}
location ~* \.(css|js|img|font)$ {
try_files $uri =404;
}
location @router {
rewrite ^.*$ /index.html last;
}
#對應上面的@router,主要原因是路由的路徑資源並不是一個真實的路徑,所以無法找到具體的檔案
#因此需要rewrite到index.html中,然後交給路由在處理請求資源
#.......其他部分省略
}
}