Docs/Nginx/nginx代理请求头名称中下划线处理.md

180 B

nginx默认header名称带有下划线(_)的会被忽略。需要开启允许有下划线。

# http配置块
http {
    ...
    underscores_in_headers on;
    ...
}