YKDZ
YKDZ
按照 @undeflife 的方法对脚本部分内容进行修改后,使用以下 Nginx 配置达成正常使用 SSL 进行连接和登录等: ``` server { listen 443 ssl; server_name docs.xxxx.cn; ssl_certificate xxxx.crt; ssl_certificate_key xxxx.key; ssl_session_timeout 5m; ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; ssl_protocols TLSv1.2 TLSv1.3; ssl_prefer_server_ciphers on; index index.php...
> > 谢谢,按照这个方法成功了 > > 能给个具体的步骤吗 https://hub.docker.com/r/ykdz/cloudreve-thumbnail 简单的镜像 在官方镜像的基础上添加了VIPS、FFmpeg 和 LibreOffice。
After test, I think this error also caused by CMI like #124. When remove CMI, this error will disapear. My CMI version is 9.2.2.0 (newest up to now)
```shell [22:04:00 INFO]: YK_DZ issued server command: /customcrafting reload [22:04:00 INFO]: [CustomCrafting] Loaded fallback language "en_US" v6.0.0 translated by WolfyScript [22:04:00 INFO]: [CustomCrafting] Loaded active language "zh_CN" v5.0.0 translated by...
When I remove my CMI I find that the problem will not appear. My CMI version is 9.1.3.0. Maybe this is the cause of the error.
When I update to CMI 9.1.4.7, error will also appear: ```shell [21:30:45 ERROR]: null org.bukkit.command.CommandException: Unhandled exception executing 'customcrafting reload' in me.wolfyscript.customcrafting.commands.CommandCC(customcrafting) at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:182) ~[purpur-api-1.18.2-R0.1-SNAPSHOT.jar:?] at org.bukkit.craftbukkit.v1_18_R2.CraftServer.dispatchCommand(CraftServer.java:906) ~[purpur-1.18.2.jar:git-Purpur-1625] at net.minecraft.server.network.ServerGamePacketListenerImpl.handleCommand(ServerGamePacketListenerImpl.java:2389)...
I opted to define 2 of createContext functions and used them to init trpc server: ```ts // trpc/http/context.ts import { FetchCreateContextFnOptions } from '@trpc/server/adapters/fetch' import { RoleSchema } from '@/schemas/prisma'...