V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
NGINX
NGINX Trac
3rd Party Modules
Security Advisories
CHANGES
OpenResty
ngx_lua
Tengine
在线学习资源
NGINX 开发从入门到精通
NGINX Modules
ngx_echo
importmeta
V2EX  ›  NGINX

为什么我的 docker nginx 的不能反向代理 favicon 啊

  •  
  •   importmeta · 2 天前 · 205 次点击

    docker 环境下, 外部有个 nginx 反向代理, 代理了一个内部的 nginx.

        # 不加这一条就无法反向代理 favicon 日志 404 
        location = /favicon.ico {
            log_not_found off;
            proxy_pass http://official;
        }
    
        location / {
            proxy_pass http://official;
            proxy_set_header Host $host;
        }
        
    

    我内部的 official 的 nignx 直接用端口访问, 是能看到 favicon 的.

    试了好久才发现, 外部必须再写一条, 才能看到 favicon, 但是我不写 css 什么的, css 直接就没问题, 只有 favicon 有这个问题.

    问过 AI 了, 老是照着结果回答.

    为什么啊? 谢谢各位了.

    2 条回复
    Belmode
        1
    Belmode  
       2 天前
    location / {
    proxy_pass http://official/;
    proxy_set_header Host $host;
    }
    importmeta
        2
    importmeta  
    OP
       2 天前
    找到原因了, 反向代理不能设置任何跟 favicon.ico 有关的, 只设置在内部 nginx.
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2853 人在线   最高记录 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 20ms · UTC 11:34 · PVG 19:34 · LAX 03:34 · JFK 06:34
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.