soulteary / docker-flare

Flare ✨ Lightweight, high performance and fast self-hosted navigation pages, resource utilization rate is <1% CPU, MEM <30 M, Docker Image < 10M

Home Page:https://soulteary.com/2022/02/23/building-a-personal-bookmark-navigation-app-from-scratch-flare.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

通过Nginx反向代理之后,获取资源都报错了

firekula opened this issue · comments

你遇到了什么样的麻烦?

家庭网站通过反向代理设置首页之后,加载资源出现了问题,子页面也无法访问
http://firekula.site/

如何复现这个问题?

image
image
image

应用版本

image

搜索

  • 在提交这个表格之前,我已经进行了相关问题搜索,没有找到相关的问题或解决方案。

补充描述

No response

我觉得问题有可能是出在 try_files 指令上,你是本地上还有其他文件需要访问吗?或许你也可以尝试类似下面这样的配置:

server {
    location / {
        try_files $uri @proxy;
    }

    location @proxy {
        proxy_pass http://192.168.3.57:5005;
    }
}

这样写就可以了!谢谢你!