部署react vue项目history模式nginx配置
Others 2019-05-09 09:47:59 2019-05-09 09:47:59 3125 次浏览server { listen 80; server_name www.ningli.win ningli.win; location / { root /web/node/blogNew/blogHtml; try_files $uri /index.html; //所有页面返回index.html #index index.html; } location /api/ { proxy_pass http://localhost:4000/; }}
api反向代理
Links: 344