nginx配置携带header转发

时间:2025-05-12 09:47:05

 

 

 

    underscores_in_headers on;开启header转发

 

http {
    include       ;
    default_type  application/octet-stream;
    sendfile        on;
    keepalive_timeout  65;
    underscores_in_headers on;

    #gzip  on;
    gzip on; 
    gzip_static on;
    gzip_buffers 4 16k;
    gzip_comp_level 5;
    gzip_types text/plain application/javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png;
    

}