Vue实战091:Vue项目部署到nginx服务器( 二 )


为了方便学习 , 下面附上本文用到的源码:
server {listen8800;#监听端口server_namelocalhost;#访问域名charset utf-8;#编码格式#access_loglogs/host.access.logmain;location / {roothtml; #站点根目录 , 可以是相对路径 , 也可以使绝对路径indexindex.html index.htm; #默认主页proxy_pass ;#转发后端站点地址,用来访问后台接口add_header 'Access-Control-Allow-Origin' '*'; #允许跨域请求add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';}}


推荐阅读