502 Bad Gateway with nginx + apache + subversion + ssl

svn commit的时候返回

bash 复制代码
unexpected http status 502 'bad gateway' on

解决方法,参考:https://stackoverflow.com/questions/2479346/502-bad-gateway-with-nginx-apache-subversion-ssl-svn-copy

在nginx中代理svn中添加

bash 复制代码
location /svn {
	set $fixed_destination $http_destination;
	if ( $http_destination ~* ^https(.*)$ ) {
	    set $fixed_destination http$1;
	}
	proxy_set_header Destination $fixed_destination;
	proxy_set_header Host $http_host;
}

配置后即可正常提交

相关推荐
BestandW1shEs4 小时前
快速理解微服务中Gateway的概念
微服务·gateway
挥之以墨8 小时前
【Nginx】核心概念与安装配置解释
运维·nginx
深蓝浅蓝的天8 小时前
nginx超长讨论汇总与常见问题
java·nginx
邓草1 天前
apache、iis规则屏蔽拦截ClaudeBot等蜘蛛爬虫抓取网页
apache·dubbo
榕树子1 天前
[java] 什么是 Apache Felix
java·开发语言·apache
寂然如故1 天前
Apache Spark
大数据·spark·apache
耀耀切克闹灬1 天前
nginx重启&解决端口冲突
nginx
斯普信专业组1 天前
深度解析:Nginx模块架构与工作机制的奥秘
运维·nginx·架构
放学后的泡泡1 天前
windows server 2019 启动 nginx 报错
运维·nginx
渔舟唱晚@1 天前
构建基于Jenkins、GitLab与Nginx的自动化项目部署
nginx·gitlab·jenkins