我用nginx反向代理和gunicorn构建了一个api服务器,在此之后,我的请求xpatch不适用于此配置,但是post和get方法正常工作。
什么东西会导致此问题?
这是我的Nginx脚本:
location /
{
# access_log off;
proxy_buffering off;
proxy_pass http://127.0.0.1:5000;
proxy_set_header X-Client-IP $remote_addr;
proxy_set_header X-Accel-Internal /nginx_static_files;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_hide_header Upgrade;
}
在同一服务器上,当我通过curl请求localhost:5000时,它可以与xpatch一起使用。但是使用域无效。