diff options
| author | tamaina <tamaina@hotmail.co.jp> | 2023-02-12 09:13:47 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-12 09:13:47 +0900 |
| commit | ee03ab8d2c06254480e8b78d3c4eab4a78409ad5 (patch) | |
| tree | a781c4db880b793a2bd6202b48c0b8754515f213 /.config | |
| parent | Dev Containerの設定を追加 (#9872) (diff) | |
| download | misskey-ee03ab8d2c06254480e8b78d3c4eab4a78409ad5.tar.gz misskey-ee03ab8d2c06254480e8b78d3c4eab4a78409ad5.tar.bz2 misskey-ee03ab8d2c06254480e8b78d3c4eab4a78409ad5.zip | |
enhance(server): videoThumbnailGenerator config (#9845)
* enhance(server): videoThumbnailGenerator config
* :v:
* fix
* 相対url
* サムネイルのproxyRemoteFilesは直接プロキシを指定する
* メディアプロキシ
Diffstat (limited to '.config')
| -rw-r--r-- | .config/example.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.config/example.yml b/.config/example.yml index a19b5d04e8..92b8726623 100644 --- a/.config/example.yml +++ b/.config/example.yml @@ -131,11 +131,20 @@ proxyBypassHosts: # Media Proxy # Reference Implementation: https://github.com/misskey-dev/media-proxy +# * Deliver a common cache between instances +# * Perform image compression (on a different server resource than the main process) #mediaProxy: https://example.com/proxy # Proxy remote files (default: false) +# Proxy remote files by this instance or mediaProxy to prevent remote files from running in remote domains. #proxyRemoteFiles: true +# Movie Thumbnail Generation URL +# There is no reference implementation. +# For example, Misskey will point to the following URL: +# https://example.com/thumbnail.webp?thumbnail=1&url=https%3A%2F%2Fstorage.example.com%2Fpath%2Fto%2Fvideo.mp4 +#videoThumbnailGenerator: https://example.com + # Sign to ActivityPub GET request (default: true) signToActivityPubGet: true |