TinsFox
TinsFox
Hi @Hexi1997 ,thanks for your contribution! But it shows abnormal under some screens under certain sizes, please check
Is there any new progress on this issue?
@tinhnvc-gadget Thank you for your reply, but I don't have the configuration related to signature at present
> @TinsFox Code-signing is required before the app can be installed on another MacOS device. If you have not configured signatures, you will need to remove `osxSign` and `osxNotarize` fields....
出现下图的原因可能是在接口 `/api/v2/auth/providers` 获取到的 `callbackUrl` 不对,我获取到的是 http 但是 GitHub 那边填的是 https
> 获取到的是 http 是后端反代的问题, 后端 nginx 里面加上 `proxy_set_header X-Forwarded-Proto $scheme;` 就可以了 加了不管用 🥲 ``` location /socket.io { proxy_pass http://mx-server:2333/socket.io; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header REMOTE-HOST...
总结一下我遇到的 ## 我的步骤 1. 后端部署在 vps 上,使用 Cloudflare 解析域名,关闭了 Cloudflare 的 proxy ,使用 Nginx + Let's Encrypt(Nginx 配置在最后) 3. 前端使用 Vercel 部署,使用 Cloudflare CNmae 解析域名,关闭 proxy 4. Github Oauth App...
> 我也遇到了这个问题。当没有 proxy_set_header X-Forwarded-Proto $scheme; 回调是 http,并在 github 设置的回调也为http。但是 github oauth 证书警告后还是继续报错了。 > > 加上变成 https 后,同步修改 github 中回调,会出现主人github账号登录后跳到仪表盘,普通用户登录后跳转到后端域名根目录。例如我后端是 blog-server.sion.ink,最后就会访问的这个url。 > > 情况:前端部署在 vercel 上,后端部署在自己新加坡的服务器上。可能是因为vercel部署前端,前后端部署的地方不一样导致的? 测试了前后端部署在同一台 VPS 上也是 https://github.com/mx-space/core/issues/2107#issuecomment-2373400625 这样的问题
I also encountered this problem when using it, and spent half a day debugging it. 🫨
This problem also exists in Shadcn UI, https://ui.shadcn.com/examples/tasks I'll try to fix it when I have time, but it probably won't be a high priority. Any Firefox users interested in...