server { server_name www.meiduo.site; listen 8080; root /home/python/Desktop/meiduo_mall_admin/dist; index index.html; }
server { server_name www.meiduo.site; listen 8080; location / { root /home/python/Desktop/meiduo_mall_admin/dist; index index.html; } }
server { server_name www.meiduo.site; listen 8080; location / { root /home/python/Desktop/meiduo_mall_admin/dist; index index.html; } # 表示只有输入www.meiduo.site/image/时,才走这个location location =/image/ { root /home/python/Desktop/meiduo_mall_admin/dist; index index.html; } }
sudo nginx -t
sudo nginx -s reload
原文:https://www.cnblogs.com/chao666/p/12340735.html