gpt4 book ai didi

apache - Jenkins/Apache 反向代理错误

转载 作者:行者123 更新时间:2023-12-01 09:11:37 27 4
gpt4 key购买 nike

根据我的搜索,我遇到了一个似乎相当普遍的问题,但是我已经按照我遇到的所有说明和/或修复程序进行操作,但没有一个对我有用,所以我想问这个希望有人能指导我正确的方向。

我在 OS X 10.11.2 上安装了 Homebrew 的 Jenkins 1.644。我关注了these有关如何在 OS X Server 5.0.15 网站中安装和设置它的说明(我相信这个版本的 OS X 服务器正在运行 Apache 2.4.16。

问题:当我连接到 Jenkins 中的管理控制台时,我收到错误消息“您的反向代理设置似乎已损坏。”以及指向 this jenkins doc 的链接.

命中 http://127.0.0.1:8080/manage不会产生错误。

我已将代理设置添加到我的虚拟主机文件中,如下所示:

ProxyRequests     Off
ProxyPreserveHost On
AllowEncodedSlashes NoDecode

<Proxy *>
Order deny,allow
Allow from all
</Proxy>

ProxyPass / http://localhost:8080/ nocanon
ProxyPassReverse / http://localhost:8080/
ProxyPassReverse / http://jenkins.exampledomain.com/

RequestHeader set X-Forwarded-Proto "https"
RequestHeader set X-Forwarded-Port "443"

当我做测试 curl 时:

curl -iLk -e https://jenkins.exampledomain.com/manage \
https://jenkins.exampledomain.com/administrativeMonitor/hudson.diagnosis.ReverseProxySetupMonitor/test

我得到以下结果:

HTTP/1.1 302 Found
Date: Fri, 22 Jan 2016 06:30:57 GMT
Server: Jetty(winstone-2.9)
X-Content-Type-Options: nosniff
Location: https://jenkins.exampledomain.com/administrativeMonitor/hudson.diagnosis.ReverseProxySetupMonitor/testForReverseProxySetup/https%3A%2F%2Fjenkins.exampledomain.com%2Fmanage/
Content-Length: 0
MS-Author-Via: DAV

HTTP/1.1 404 Not Found
Date: Fri, 22 Jan 2016 06:30:57 GMT
Server: Apache/2.4.16 (Unix) OpenSSL/0.9.8zg
Content-Length: 325
Content-Type: text/html; charset=iso-8859-1

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /administrativeMonitor/hudson.diagnosis.ReverseProxySetupMonitor/testForReverseProxySetup/https://jenkins.exampledomain.com/manage/ was not found on this server.</p>
</body></html>

很明显那个地址在这台服务器上,因为我可以通过转到正确的地址进入管理控制台。

我卡住了……Apache 配置不是我的强项。我正在寻求任何帮助。

--编辑更多信息--

从/Library/Server/Web/Config/apache2/sites 目录添加完整的虚拟主机文件以获取更多详细信息。

<VirtualHost 127.0.0.1:34543>
ServerName https://jenkins.exampledomain.com:443
ServerAdmin admin@example.com
DocumentRoot "/Library/Server/Web/Data/Sites/jenkins.exampledomain.com"
DirectoryIndex index.html index.php default.html
CustomLog /var/log/apache2/access_log combinedvhost
ErrorLog /var/log/apache2/error_log
<IfModule mod_ssl.c>
SSLEngine On
SSLCipherSuite "ALL:!aNULL:!ADH:!eNULL:!LOW:!EXP:RC4+RSA:+HIGH:+MEDIUM"
SSLProtocol -ALL +TLSv1
SSLProxyEngine On
SSLCertificateFile "/etc/certificates/machine.local.certCA1FileLocation.pem"
SSLCertificateKeyFile "/etc/certificates/machine.local.certCA2FileLocation.key.pem"
SSLCertificateChainFile "/etc/certificates/machine.local.certCA3FileLocation.chain.pem"
SSLProxyProtocol -ALL +TLSv1
SSLProxyCheckPeerCN off
SSLProxyCheckPeerName off
</IfModule>
<Directory "/Library/Server/Web/Data/Sites/jenkins.exampledomain.com">
Options All -Indexes -ExecCGI -Includes +MultiViews
AllowOverride None
<IfModule mod_dav.c>
DAV Off
</IfModule>
<IfDefine !WEBSERVICE_ON>
Require all denied
ErrorDocument 403 /customerror/websitesoff403.html
</IfDefine>
</Directory>

ProxyRequests Off
ProxyPreserveHost On
AllowEncodedSlashes NoDecode

<Proxy *>
Order deny,allow
Allow from all
</Proxy>

ProxyPass / http://localhost:8080/ nocanon
ProxyPassReverse / http://localhost:8080/
ProxyPassReverse / http://jenkins.exampledomain.com/

RequestHeader set X-Forwarded-Proto "https"
RequestHeader set X-Forwarded-Port "443"
</VirtualHost>

--编辑 2 另一个发现--

我注意到通过尝试 curl 到上面的“未找到”url,服务器确实报告它未找到。如果我点击 https://jenkins.exampledomain.com/manage/我会得到一个 404。但是,如果我省略尾随/,它会起作用。 https://jenkins.exampledomain.com/manage是成功的。希望这对某人有意义!

谢谢

最佳答案

我知道这是一个老问题,但我遇到了同样的错误问题:

HTTP ERROR 404

Problem accessing /administrativeMonitor/hudson.diagnosis.ReverseProxySetupMonitor/testForReverseProxySetup/https%3A%2F%2Fbuild.scopeitconsulting.com%2Fmanage/. Reason:

http://build.domain.com/manage vs. https://build.domain.com/manage

我能够通过包含作者问题中的两行来解决我的问题:

RequestHeader set X-Forwarded-Proto "https"
RequestHeader set X-Forwarded-Port "443"

所以这里是我的相关部分,来自一个有效的 ssl.conf 配置,以防它对任何人有帮助。我使用 http 在根上下文的端口 8080 上运行 Jenkins,但在 Apache 强制执行 https 之后对其进行反向代理。

ProxyPass               / http://localhost:8080/ nocanon
ProxyPassReverse / http://localhost:8080/
ProxyPassReverse / http://build.domain.com/
ProxyPassReverse / https://build.domain.com/
ProxyRequests Off
ProxyPreserveHost On
AllowEncodedSlashes NoDecode
RequestHeader set X-Forwarded-Proto "https"
RequestHeader set X-Forwarded-Port "443"
<Proxy http://localhost:8080/>
Order deny,allow
Allow from all
</Proxy>

我希望这可以帮助那些像我一样花了太多时间试图找到工作配置来解决错误的人。

关于apache - Jenkins/Apache 反向代理错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34940805/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com