gpt4 book ai didi

nginx 反向代理图片和 css 未加载

转载 作者:行者123 更新时间:2023-12-04 10:50:43 27 4
gpt4 key购买 nike

我尝试配置一个 nginx 反向代理来访问 Jenkins 实例。我可以打开身份验证页面,但没有 CSS 和图像。它在直接访问时完美运行。

一切都好像反向代理没有正确重写 html 源页面中定义的 URL 一样。我错过了什么吗?

这是我的 nginx 配置:

    location /jenkins {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect false;
proxy_pass http://jenkins:8080/;
}

最佳答案

我找到了解决方案。 nginx 反向代理运行良好,但 Jenkins 需要一些自定义才能使用反向代理。

最终的 nginx 配置:

    location /jenkins/ {
proxy_pass http://jenkins:8080/jenkins/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}

the tutorial在 nginx 反向代理后面配置 jenkins 解决了我的问题

关于nginx 反向代理图片和 css 未加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25187817/

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