在我的本地开发环境中,我使用“代理”解决了跨域问题,数据库可以接受数据
server {
listen 8000;
server_name _;
root /home/myftp/dist;
index index.html index.htm;
location / {
try_files $uri $uri/ /index.html;
}
location ^~ /assets/ {
gzip_static on;
expires max;
add_header Cache-Control public;
}
location /api {
rewrite ^.+api/?(.*)$ /$1 break;
include uwsgi_params;
proxy_pass http://localhost:8889;
}
error_page 500 502 503 504 /500.html;
client_max_body_size 20M;
keepalive_timeout 10;
}
但是当我将它们放到网站(linux,nginx)上时,出现了问题,数据库无法接受数据
nginx配置文件
button
找不到控制台提示404,但是本地otest的结果都还可以,我已经检查了我的nginx success.log,error.log,没有从我的ip:8000中获取的日志
这可以帮助我吗〜谢谢:)