woodenrobot
woodenrobot
@axnsan12 Do you think this implementation is appropriate?You can use it like: ``` from drf_yasg.views import get_schema_view get_schema_view(schemes=["https", "http"]... ```
`chathub/src/app/bots/bing /api.ts` 文件中加上 `x-forwarded-for: 1.1.1.1` 不知道是否可行,前端水平不行不会打包,会的朋友可以试试
[chathub.zip](https://github.com/chathub-dev/chathub/files/11062055/chathub.zip) 搜索打包后的源码加上了,已测可用
可以直接在 index.html 的 `` 前加入下面代码即可使用 ```html ```
找到原因了,应该是文件权限不对 首先得文件用户和用户组要改成 emby: ```bash chown -R emby:emby common-utils.js jquery-3.6.0.min.js main.js md5.min.js style.css ``` 然后文件的权限要改成 `644`: ```bash chmod 644 common-utils.js jquery-3.6.0.min.js main.js md5.min.js style.css ``` 最后在 `index.html` 的 `` 前加下面代码: ```html...