首页 > 系统相关 >Nginx反向代理报错400 Request Header Or Cookie Too Large

Nginx反向代理报错400 Request Header Or Cookie Too Large

时间:2024-11-01 16:47:16浏览次数:3  
标签:www set log header Request Header 报错 proxy my

Request Header Or Cookie Too Large

1、问题

Nginx反向代理报错400 Request Header Or Cookie Too Large

400 Request Header Or Cookie Too Large


2、原因

假设需要重定向到:www.baidu.com

报错的配置如下:

    location /my-pc{
        access_log /etc/nginx/logs/https_my_pc.log;
        proxy_pass            https://www.baidu.com/my-pc;
        proxy_set_header   Host             $host;
        proxy_set_header   X-Real-IP        $remote_addr;
        proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;
    }

    location /my-web{
        access_log /etc/nginx/logs/https_my_web.log;
        proxy_pass            https://www.baidu.com/my-web;
        proxy_set_header   Host             $host;
        proxy_set_header   X-Real-IP        $remote_addr;
        proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;
    }

需调整:

proxy_set_header Host $host; 

3、解决

调整为:

proxy_set_header Host www.baidu.com; 

全部配置如下:

    location /my-pc{
        access_log /etc/nginx/logs/https_my_pc.log;
        proxy_pass            https://www.baidu.com/my-pc;
        proxy_set_header   Host             www.baidu.com;
        proxy_set_header   X-Real-IP        $remote_addr;
        proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;
    }

    location /my-web{
        access_log /etc/nginx/logs/https_my_web.log;
        proxy_pass            https://www.baidu.com/my-web;
        proxy_set_header   Host             www.baidu.com;
        proxy_set_header   X-Real-IP        $remote_addr;
        proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;
    }

问题解决。


OK,就这些吧。
有什么不对的还望指正,书写不易,觉得有帮助就点个赞吧!☺☺☺

标签:www,set,log,header,Request,Header,报错,proxy,my
From: https://blog.csdn.net/qq_38254635/article/details/143436093

相关文章

  • 【AXI VIP 报错一】
    项目场景:AXIVIP使用问题描述AXIVIP报错:Theobjecthandlegivenhasbeenreturnedbacktothedriverin0time.Pleaseensurethatthesequencereturnstheobjectrecievedfromthemonitor,backtothedriverin0time原因分析:说人话就是,你的仿真环境......
  • 【Python】网络请求与数据获取:Requests库的使用与技巧
    网络请求与数据获取:Requests库的使用与技巧在现代Web开发与数据科学工作中,从API、网页或服务端获取数据是非常常见的任务,而Python的Requests库为此提供了便捷且功能强大的工具。本文将从基本的HTTP请求操作出发,结合常见的数据获取需求,深入讲解Requests的使用......
  • 当访问该网站时失败,提示Forbidden或HTTP 错误 403.14 - Forbidden报错信息
    当您遇到“Forbidden”或“HTTP错误403.14-Forbidden”时,这通常意味着服务器理解了请求,但拒绝执行。这种错误可能由多种原因引起,以下是一些常见的解决方法:检查URL:确保输入的网址正确无误。检查是否有任何多余的字符或拼写错误。服务器配置问题:对于IIS服务器,403.14......
  • Linux操作系统网站提示“Internal Server Error”报错
    可能原因及解决方法服务器资源超载解决方法:检查服务器资源使用情况,如CPU、内存和磁盘空间。如果资源使用率过高,考虑优化应用或升级服务器配置。PHP版本过低解决方法:检查当前PHP版本,并确保与WordPress兼容。可以通过以下命令查看PHP版本:   PHP文件配置错......
  • yarn安装报错 Unrecognized option: --version Error: Could not create the Java Vir
    在自己电脑上安装yarn报错,Unrecognizedoption:--versionError:CouldnotcreatetheJavaVirtualMachine.Error:Afatalexceptionhasoccurred.Programwillexit.估计是和之前安装的hadoop冲突了使用whereyarn命令,找到安装yarn的目录C:\ProgramFiles\nodejs把......
  • RN 中的createNativeStackNavigator,为什么出现顶部的 header
    在ReactNative中,createNativeStackNavigator是ReactNavigation库提供的一个用于创建原生堆栈导航器的函数。它允许你在应用程序中创建具有堆栈导航功能的屏幕,其中每个屏幕都可以被推送到堆栈上或从堆栈中弹出。createNativeStackNavigator生成的导航器默认包含一个......
  • fetch 与 xmlHttpRequest 请求总结
    文章目录fetch、XMLHttpRequest、ajax简要介绍fetch与xmlHttpRequest比较fetch、XMLHttpRequest、ajax简要介绍FetchAPI概述Fetch是一种现代的JavaScriptAPI,用于在浏览器中进行网络请求。它提供了一种更灵活、更强大的方式来获取资源,相比传统的XMLHttpRe......
  • Request&Respond学习
    一、RequestHttpServletRequest对象代表客户端的HTTP请求。当客户端(通常是浏览器)向Servlet发送请求时,Servlet容器会创建一个HttpServletRequest对象,并将其作为参数传递给service()、doGet()、doPost()等方法。常用方法获取请求参数StringgetParameter(Stringname):获取......
  • git push报错:remote: 内部服务错误 (13/25)
    报错信息:Compressingobjects:100%(25/25),done.remote:内部服务错误(13/25)Writingobjects:100%(25/25),2.03MiB|2.41MiB/s,done.Total25(delta6),reused0(delta0)fatal:theremoteendhungupunexpectedlyerror:failedtopushsomerefsto'h......
  • requests模块
    1.requests模块1.1模块说明requests是使用Apache2licensed许可证的http库使用python编写的比urllib2模块简洁request支持http连接保持和连接池,支持使用cookie会话,支持文件上传,支持自动响应内容编码,支持国际化的URL和POST数据自动编码在python内置模块的基础上进行了高度......