Nginx配置 求解???

部署vue项目可以正常访问页面,发起请求500
nginx日志Nginx配置 求解???
检查配置文件正常Nginx配置 求解???
配置文件
Nginx配置 求解???
页面响应
Nginx配置 求解???
求指教!!! 感激不尽!!! 可有偿!


回答:

后端的接口 也是/api/xxx 开头的吗

server {

listen 8065;

proxy_read_timeout 300;

proxy_connect_timeout 300;

proxy_send_timeout 300;

root /home/web/bigscreen/dist/;

location / {

# client_max_body_size 20M; # body 请求体 413错

# client_max_body_size 20M;

index index.html;

try_files $uri $uri/ /index.html;

if ($uri ~* \.(html)$) {

add_header Cache-Control "private, no-store, no-cache, must-revalidate, proxy-revalidate";

}

}

location /api/ {

proxy_set_header Host $http_host;

proxy_set_header X-Real-Ip $remote_addr;

proxy_set_header REMOTE-HOST $remote_addr;

proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

proxy_pass http://xxxx9:8989/;

}

}

给你一个我经常使用的配置

以上是 Nginx配置 求解??? 的全部内容, 来源链接: utcz.com/p/934466.html

回到顶部