饭饭's Blog 的评论 https://ffis.me/ zh-CN 饭饭的博客(ffis.me) - 不忘初心,方得始终 Tue, 10 Feb 2026 16:43:48 +0800 Tue, 10 Feb 2026 16:43:48 +0800 heming https://ffis.me/archives/2200.html/comment-page-1#comment-6061 https://ffis.me/archives/2200.html/comment-page-1#comment-6061 Tue, 10 Feb 2026 16:43:48 +0800 heming 是不是显示500?
我会,搞了一天终于搞好了。
你先去数据库里找到:你的表前缀_options
里面选择显示所有,再找到plugins点编辑,修改后点击执行,不会改的话就没办法了
吧activated 部分中的 geetest 插件配置和handles 部分中所有属于 geetest 的事件处理都删掉就行了 哈哈.png

]]>
https://ffis.me/archives/2200.html/comment-page-1#comment-6061#comments
heming https://ffis.me/archives/2200.html/comment-page-2#comment-6060 https://ffis.me/archives/2200.html/comment-page-2#comment-6060 Tue, 10 Feb 2026 16:42:04 +0800 heming 是不是显示500?
我会,搞了一天终于搞好了。
你先去数据库里找到:你的表前缀_options
里面选择显示所有,再找到plugins点编辑,修改后点击执行,不会改的话就没办法了
吧activated 部分中的 geetest 插件配置和handles 部分中所有属于 geetest 的事件处理都删掉就行了 呵呵.png

]]>
https://ffis.me/archives/2200.html/comment-page-2#comment-6060#comments
iM https://ffis.me/archives/2259.html/comment-page-1#comment-6058 https://ffis.me/archives/2259.html/comment-page-1#comment-6058 Sat, 29 Nov 2025 23:07:05 +0800 iM 请教一下这个iOS客户端完全同步不了是什么原因,我在Win、MAC、Android上都可以用,但是这个iOS就不行 泪.png

]]>
https://ffis.me/archives/2259.html/comment-page-1#comment-6058#comments
Yubaozhi https://ffis.me/develop.html/comment-page-1#comment-6057 https://ffis.me/develop.html/comment-page-1#comment-6057 Fri, 28 Nov 2025 18:02:25 +0800 Yubaozhi 加密音乐解密工具没了?

]]>
https://ffis.me/develop.html/comment-page-1#comment-6057#comments
天之回响 https://ffis.me/archives/2110.html/comment-page-1#comment-6056 https://ffis.me/archives/2110.html/comment-page-1#comment-6056 Sun, 23 Nov 2025 06:47:56 +0800 天之回响 现在可以用Google trust services的证书了 滑稽.png

]]>
https://ffis.me/archives/2110.html/comment-page-1#comment-6056#comments
饭饭 https://ffis.me/develop.html/comment-page-1#comment-6054 https://ffis.me/develop.html/comment-page-1#comment-6054 Thu, 06 Nov 2025 11:01:00 +0800 饭饭 使用 typecho 搭建

]]>
https://ffis.me/develop.html/comment-page-1#comment-6054#comments
javadev https://ffis.me/develop.html/comment-page-1#comment-6053 https://ffis.me/develop.html/comment-page-1#comment-6053 Thu, 06 Nov 2025 10:44:51 +0800 javadev 你好,想请问下这个博客是使用wordpress搭建的还是自己手搓的呀?

]]>
https://ffis.me/develop.html/comment-page-1#comment-6053#comments
ruokay https://ffis.me/archives/2259.html/comment-page-1#comment-6052 https://ffis.me/archives/2259.html/comment-page-1#comment-6052 Wed, 15 Oct 2025 16:25:07 +0800 ruokay 又查了很多资料,最后定位还是nginx的问题,我的配置里面少了一些关于请求头这部分的设置,虽然这些都是默认值,但不写就不行。特别是Host $host这句属于必须。我的原配置里是没有这个的。另外,使用这个nginx的配置,APP_BASE_URL就设置为https://joplin.mydomain即可。我的proxy_pass设置的就是http://127.0.0.1:22300,现在没有问题,一切正常。

    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header REMOTE-HOST $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Proto $scheme;
]]>
https://ffis.me/archives/2259.html/comment-page-1#comment-6052#comments
饭饭 https://ffis.me/archives/2259.html/comment-page-1#comment-6051 https://ffis.me/archives/2259.html/comment-page-1#comment-6051 Tue, 14 Oct 2025 23:36:44 +0800 饭饭 APP_BASE_URL 好像配置的不对,应该浏览器里面的地址,也就是nginx配置的 server_name --> joplin.mydomain
nginx配置应该没多大问题,只要能访问页面就代表配置的没问题
我的完整nginx配置如下,请参考

server {
    # listen
    include /xxx/common_config/listen.conf;
    # ssl
    include /xxx/domain_ssl_config/ffis.me_ssl.conf;
    # security
    add_header X-Frame-Options SAMEORIGIN;
    add_header X-Content-Type-Options nosniff;

    client_max_body_size 128M;

    server_name joplin.ffis.me;
    access_log /xxx/xxx/joplin.ffis.me_nginx.log combined;
    index index.html index.htm index.php index.jsp;

    # error_page
    include /xxx/common_config/error_page.conf;

    # joplin
    location / {
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header REMOTE-HOST $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
        proxy_pass http://joplin_server:22300;
    }

    location ~* \.(htaccess)$ { 
        return 403;
    }
}
]]>
https://ffis.me/archives/2259.html/comment-page-1#comment-6051#comments
ruokay https://ffis.me/archives/2259.html/comment-page-1#comment-6050 https://ffis.me/archives/2259.html/comment-page-1#comment-6050 Tue, 14 Oct 2025 23:29:45 +0800 ruokay 博主,我也一直在用joplin,joplin server部署在腾讯云上(debian12),之前一直在使用http://joplin.mydomain:22300的方式与各设备同步,也一直正常。最近使用用nginx做了反向代理,并在nginx中添加了ssl证书,访问的名称是:https://joplin.mydomain。目前出现的问题是,客户端同步数据没有问题,当我edge登录时也能显示登录界面,但输入用户名和密码就无法找到服务器,无法登录。请问你的反向代理是怎么设置的?有这个问题吗?
我的nginx反向代理如下:
server {

    listen 443 ssl;
    ssl_crt..
    ssl_key..
    server_name joplin.mydomain
    location / {
        proxy_pass 127.0.0.1:22300
    }

}
同样的,我在joplin server的.env文件中,将APP_BASE_URL=http://127.0.0.1:22300
请教我该怎么解决?谢谢

]]>
https://ffis.me/archives/2259.html/comment-page-1#comment-6050#comments