Nginx部署vue项目(vue+nginx)代理转发
安装nginx下载解压就可以了配置代理nginx/conf/nginx.confserver {listen8088; #访问的端口server_namelocalhost; #ip,服务器名#charset koi8-r;#access_loglogs/host.access.logmain;root F:\szpf\coding\shenzhen-oa-website-mas
·
安装nginx
下载解压就可以了
配置代理
nginx/conf/nginx.conf
server {
listen 8088; #访问的端口
server_name localhost; #ip,服务器名
#charset koi8-r;
#access_log logs/host.access.log main;
root F:\szpf\coding\shenzhen-oa-website-master\shenzhen-oa-website-master\dist;
#vue项目的打包后的dist
# index index.html index.htm;
# location / {
# try_files $uri $uri/ /index.html;
# }
#代理后台接口
location /api/ { #vue的请求接口要以api开头
proxy_pass http://192.168.1.178:6180/;#转发请求的地址
proxy_connect_timeout 6000;#链接超时设置
proxy_read_timeout 6000;#访问接口超时设置
}
#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;
}
}
更多推荐
已为社区贡献3条内容
所有评论(0)