gpt4 book ai didi

nginx - 使用 nginx 配置 Spark Web-UI

转载 作者:行者123 更新时间:2023-12-01 13:43:50 25 4
gpt4 key购买 nike

我需要用 nginx 配置 spark web-ui 。

我的配置

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

但是当我尝试访问 url 时,图像和 css 未加载(404 未找到)。

现在假设图像和 css 文件在我的远程机器 (192.168.230.45) 的静态文件夹中,但是 url 指向我安装了 nginx 的机器的静态文件夹。

http://localhost/static/img1.png

代替

http://192.168.230.45/static/img1.png

最佳答案

我花了几天时间寻找解决方案。最后我发现了如何解决这个问题。这是我对我们问题的解决方案:

location /app/spark/master/ {
proxy_pass http://192.168.230.45:8080/;
proxy_set_header Accept-Encoding "";
sub_filter "/static/" "/app/spark/master/static/";
sub_filter_once off;
}

此外,您将面临与“历史”类链接类似的问题。解决方案将是相同的。只需添加以下行:

sub_filter "/history/" "/app/spark/master/history/";

瞧!

关于nginx - 使用 nginx 配置 Spark Web-UI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37340198/

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