Fallenbagel / jellyseerr

Fork of overseerr for jellyfin support.
https://docs.jellyseerr.dev/
MIT License
3.78k stars 235 forks source link

请问如何设置代理呢 #343

Closed sy911212 closed 12 months ago

sy911212 commented 1 year ago

Description

请问如何设置代理呢,我在设置里未找到可以设置代理的界面

Desired Behavior

可以设置代理成功

Additional Context

No response

Code of Conduct

Fallenbagel commented 1 year ago

Proxy can be set in docker-compose as such

version: 'latest'
services:  
  jellyseerr:
       image: fallenbagel/jellyseerr:latest
       container_name: jellyseerr
       hostname: jellyseer
       network_mode: bridge
       environment:
        - http_proxy="http://proxy:8080"
        - https_proxy="http://proxy:8080"
        - no_proxy="localhost,127.0.0.1"
        - LOG_LEVEL=debug
        - TZ=America/New_York
       ports:
            - 5055:5055
       volumes:
            - /path/to/config:/app/config
       restart: always 

Or if youre running natively

export http_proxy="http://proxy:8080"
export https_proxy="http://proxy:8080"
export no_proxy="localhost,127.0.0.1"
Fallenbagel commented 1 year ago

You can use the global proxy settings in Windows. It will affect jellyseerr as well

您可以在 Windows 中使用全局代理设置。它也会影响 jellyseerr

Ice-Cream-MY commented 1 year ago

jellyseerr: image: fallenbagel/jellyseerr:latest container_name: jellyseerr hostname: jellyseer network_mode: bridge

When I set the proxy server, I can't open the web,Prompt internal server error

When I cancel the agent, everything returns to normal

image

image

Fallenbagel commented 1 year ago

hmm Weird. I got it working image image

And I know the proxy is working because when i exec into the container and run apk add curl && curl ident.me It shows my proxy ip

Yukk1No commented 1 year ago

jellyseerr: image: fallenbagel/jellyseerr:latest container_name: jellyseerr hostname: jellyseer network_mode: bridge

When I set the proxy server, I can't open the web,Prompt internal server error

When I cancel the agent, everything returns to normal

image

image Please note that there should be no quotation marks after HTTP_PROXY and HTTPS_PROXY in your yaml. However, after configuring according to @Fallenbagel's format, I encountered a 500 Internal Server Error on all of my pages.

Fallenbagel commented 1 year ago

jellyseerr: image: fallenbagel/jellyseerr:latest container_name: jellyseerr hostname: jellyseer network_mode: bridge

When I set the proxy server, I can't open the web,Prompt internal server error

When I cancel the agent, everything returns to normal

image

image Please note that there should be no quotation marks after HTTP_PROXY and HTTPS_PROXY in your yaml. However, after configuring according to @Fallenbagel's format, I encountered a 500 Internal Server Error on all of my pages.

Could you exec into the container and do a curl to your proxy or sth. To see if the container can reach your proxy. Another thing you could try is putting it into host mode and adding the http_proxies. My guess is that the container can't reach the local proxy so throwing 500 errors

Yukk1No commented 1 year ago

jellyseerr: image: fallenbagel/jellyseerr:latest container_name: jellyseerr hostname: jellyseer network_mode: bridge

When I set the proxy server, I can't open the web,Prompt internal server error When I cancel the agent, everything returns to normal image image Please note that there should be no quotation marks after HTTP_PROXY and HTTPS_PROXY in your yaml. However, after configuring according to @Fallenbagel's format, I encountered a 500 Internal Server Error on all of my pages.

Could you exec into the container and do a curl to your proxy or sth. To see if the container can reach your proxy. Another thing you could try is putting it into host mode and adding the http_proxies. My guess is that the container can't reach the local proxy so throwing 500 errors

First of all, thank you for your reply! I have tested the connection to the proxy server using the method you mentioned, and it seems to be working fine. The IP address used is that of my proxy server, and I am able to access websites like Google without any issues (I am in mainland China). However, I keep encountering similar errors in the backend of my container. Could you please take a look at them?

2023-07-25T05:53:59.971Z [error][Jellyfin Sync]: Sync interrupted {"errorMessage":"Sync was aborted."} 2023-07-25T05:54:00.007Z [debug][Jobs]: Starting scheduled job: Download Sync 2023-07-25T05:54:07.893Z [debug][API]: Something went wrong retrieving popular movies {"errorMessage":"[TMDB] Failed to fetch discover movies: Request failed with status code 400"} 2023-07-25T05:54:07.981Z [debug][API]: Something went wrong retrieving trending items {"errorMessage":"[TMDB] Failed to fetch all trending: Request failed with status code 400"} 2023-07-25T05:54:08.078Z [debug][API]: Something went wrong retrieving the movie genre slider {"errorMessage":"[TMDB] Failed to fetch movie genres: Request failed with status code 400"} 2023-07-25T05:54:08.735Z [warn][GitHub API]: Failed to retrieve GitHub releases. This may be an issue on GitHub's end. Overseerr can't check if it's on the latest version. {"errorMessage":"Request failed with status code 503"} 2023-07-25T05:54:08.892Z [debug][API]: Something went wrong retrieving movie {"errorMessage":"[TMDB] Failed to fetch movie details: Request failed with status code 400","movieId":"889575"} 2023-07-25T05:54:08.895Z [debug][API]: Something went wrong retrieving the series genre slider {"errorMessage":"[TMDB] Failed to fetch TV genres: Request failed with status code 400"} 2023-07-25T05:54:08.901Z [debug][API]: Something went wrong retrieving popular series {"errorMessage":"[TMDB] Failed to fetch discover TV: Request failed with status code 400"} 2023-07-25T05:54:08.979Z [debug][API]: Something went wrong retrieving popular movies {"errorMessage":"[TMDB] Failed to fetch discover movies: Request failed with status code 400"} 2023-07-25T05:54:08.981Z [debug][API]: Something went wrong retrieving popular series {"errorMessage":"[TMDB] Failed to fetch discover TV: Request failed with status code 400"} 2023-07-25T05:54:13.437Z [debug][API]: Something went wrong retrieving popular movies {"errorMessage":"[TMDB] Failed to fetch discover movies: Request failed with status code 400"} 2023-07-25T05:54:14.028Z [debug][API]: Something went wrong retrieving the movie genre slider {"errorMessage":"[TMDB] Failed to fetch movie genres: Request failed with status code 400"} 2023-07-25T05:54:14.037Z [debug][API]: Something went wrong retrieving trending items {"errorMessage":"[TMDB] Failed to fetch all trending: Request failed with status code 400"} 2023-07-25T05:54:15.402Z [debug][API]: Something went wrong retrieving popular movies {"errorMessage":"[TMDB] Failed to fetch discover movies: Request failed with status code 400"} 2023-07-25T05:54:15.505Z [debug][API]: Something went wrong retrieving popular series {"errorMessage":"[TMDB] Failed to fetch discover TV: Request failed with status code 400"} 2023-07-25T05:54:15.507Z [debug][API]: Something went wrong retrieving the series genre slider {"errorMessage":"[TMDB] Failed to fetch TV genres: Request failed with status code 400"} 2023-07-25T05:54:20.034Z [debug][API]: Something went wrong retrieving popular movies {"errorMessage":"[TMDB] Failed to fetch discover movies: Request failed with status code 400"} 2023-07-25T05:54:24.739Z [debug][API]: Something went wrong retrieving popular movies {"errorMessage":"[TMDB] Failed to fetch discover movies: Request failed with status code 400"} 2023-07-25T05:54:25.273Z [debug][API]: Something went wrong retrieving popular movies {"errorMessage":"[TMDB] Failed to fetch discover movies: Request failed with status code 400"} 2023-07-25T05:54:25.275Z [debug][API]: Something went wrong retrieving trending items {"errorMessage":"[TMDB] Failed to fetch all trending: Request failed with status code 400"} 2023-07-25T05:54:25.287Z [debug][API]: Something went wrong retrieving the movie genre slider {"errorMessage":"[TMDB] Failed to fetch movie genres: Request failed with status code 400"} 2023-07-25T05:54:25.371Z [debug][API]: Something went wrong retrieving popular series {"errorMessage":"[TMDB] Failed to fetch discover TV: Request failed with status code 400"} 2023-07-25T05:54:25.373Z [debug][API]: Something went wrong retrieving the series genre slider {"errorMessage":"[TMDB] Failed to fetch TV genres: Request failed with status code 400"} 2023-07-25T05:54:25.933Z [warn][GitHub API]: Failed to retrieve GitHub releases. This may be an issue on GitHub's end. Overseerr can't check if it's on the latest version. {"errorMessage":"Request failed with status code 503"} 2023-07-25T05:54:26.776Z [debug][API]: Something went wrong retrieving popular series {"errorMessage":"[TMDB] Failed to fetch discover TV: Request failed with status code 400"} 2023-07-25T05:54:27.198Z [debug][API]: Something went wrong retrieving movie {"errorMessage":"[TMDB] Failed to fetch movie details: Request failed with status code 400","movieId":"889575"} 2023-07-25T05:54:29.611Z [debug][API]: Something went wrong retrieving movies by studio {"errorMessage":"[TMDB] Failed to fetch movie studio: Request failed with status code 400","studioId":"127928"} 2023-07-25T05:54:31.316Z [debug][API]: Something went wrong retrieving popular movies {"errorMessage":"[TMDB] Failed to fetch discover movies: Request failed with status code 400"} 2023-07-25T05:54:32.976Z [debug][API]: Something went wrong retrieving trending items {"errorMessage":"[TMDB] Failed to fetch all trending: Request failed with status code 400"} 2023-07-25T05:54:32.980Z [debug][API]: Something went wrong retrieving popular series {"errorMessage":"[TMDB] Failed to fetch discover TV: Request failed with status code 400"} 2023-07-25T05:54:32.982Z [debug][API]: Something went wrong retrieving popular movies {"errorMessage":"[TMDB] Failed to fetch discover movies: Request failed with status code 400"} 2023-07-25T05:54:32.984Z [debug][API]: Something went wrong retrieving the movie genre slider {"errorMessage":"[TMDB] Failed to fetch movie genres: Request failed with status code 400"} 2023-07-25T05:54:32.991Z [debug][API]: Something went wrong retrieving popular movies {"errorMessage":"[TMDB] Failed to fetch discover movies: Request failed with status code 400"} 2023-07-25T05:54:33.002Z [debug][API]: Something went wrong retrieving the series genre slider {"errorMessage":"[TMDB] Failed to fetch TV genres: Request failed with status code 400"} 2023-07-25T05:54:34.175Z [debug][API]: Something went wrong retrieving popular series {"errorMessage":"[TMDB] Failed to fetch discover TV: Request failed with status code 400"} 2023-07-25T05:54:34.316Z [debug][API]: Something went wrong retrieving movie {"errorMessage":"[TMDB] Failed to fetch movie details: Request failed with status code 400","movieId":"889575"} 2023-07-25T05:54:35.535Z [debug][API]: Something went wrong retrieving movies by studio {"errorMessage":"[TMDB] Failed to fetch movie studio: Request failed with status code 400","studioId":"34"} 2023-07-25T05:54:39.604Z [debug][API]: Something went wrong retrieving movies by studio {"errorMessage":"[TMDB] Failed to fetch movie studio: Request failed with status code 400","studioId":"34"} 2023-07-25T05:54:40.305Z [warn][GitHub API]: Failed to retrieve GitHub releases. This may be an issue on GitHub's end. Overseerr can't check if it's on the latest version. {"errorMessage":"Request failed with status code 503"} 2023-07-25T05:54:46.129Z [debug][API]: Something went wrong retrieving movies by studio {"errorMessage":"[TMDB] Failed to fetch movie studio: Request failed with status code 400","studioId":"34"} 2023-07-25T05:55:00.013Z [debug][Jobs]: Starting scheduled job: Download Sync 2023-07-25T05:55:00.015Z [info][Jobs]: Starting scheduled job: Jellyfin Recently Added Sync 2023-07-25T05:55:00.016Z [info][Jellyfin Sync]: Jellyfin Sync Starting {"sessionId":"c75ca00e-3fc2-4db8-9f9e-184ce15eff68"} 2023-07-25T05:55:00.018Z [info][Jellyfin Sync]: Beginning to process recently added for library: 动画 2023-07-25T05:55:00.144Z [error][Jellyfin Sync]: Failed to process Jellyfin item. Id: 9148aad7b8c38298dfe5afdb6f9cc6c2 {"errorMessage":"[TMDB] Failed to get TV show using the external TVDB ID: [TMDB] Failed to find by external ID: Request failed with status code 400","jellyfinitem":{"Name":"久保同学不放过我","ServerId":"647a10d423244eed8ae61afe7eeb7318","Id":"9148aad7b8c38298dfe5afdb6f9cc6c2","PremiereDate":"2023-01-10T00:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":6.4,"RunTimeTicks":14400000000,"ProductionYear":2023,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":12,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"420084"},"ChildCount":2,"Status":"Ended","AirTime":"2023-01-10","AirDays":["Tuesday"],"DisplayOrder":"aired","ImageTags":{"Primary":"09aa263a29311a45dd22f94254305ed2","Banner":"dd4589e1e2728452ffdf8a27c4f3cdae","Logo":"cf0f24a5856f3152c913153705357f44","Thumb":"15c6e586c16ceadeecdf5a7992f8611a"},"BackdropImageTags":["14403ceccf6cc57f073757589b07f321"],"ImageBlurHashes":{"Backdrop":{"14403ceccf6cc57f073757589b07f321":"WYE|YpIdF|_4p0JBXRxwk8NLogS0S~RPs:bcofs:b_NGozxuogt7"},"Primary":{"09aa263a29311a45dd22f94254305ed2":"dTOD5@57$*EL?^s;RPr?-:o|IUWCX8ozxua}ogX9kVxZ"},"Banner":{"dd4589e1e2728452ffdf8a27c4f3cdae":"H~QJAt.8aKoN-;tQjaxuoz~qxbaKaft7kCkCt7bb"},"Logo":{"cf0f24a5856f3152c913153705357f44":"OIRfd|RQ-p-Vi^-:Na~CrERjJ7N@XSRjx]oLRjj[bHRje:"},"Thumb":{"15c6e586c16ceadeecdf5a7992f8611a":"NeQ0Er9FD%yDtS?I_4o#kXt7njjF?bbIRmn,WBbc"}},"LocationType":"FileSystem","EndDate":"2023-06-20T00:00:00.0000000Z"}} 2023-07-25T05:55:00.148Z [error][Jellyfin Sync]: Failed to process Jellyfin item. Id: 922e69cd40cc47372b992e84787b535f {"errorMessage":"[TMDB] Failed to get TV show using the external TVDB ID: [TMDB] Failed to find by external ID: Request failed with status code 400","jellyfinitem":{"Name":"Fate/stay night [Unlimited Blade Works]","ServerId":"647a10d423244eed8ae61afe7eeb7318","Id":"922e69cd40cc47372b992e84787b535f","PremiereDate":"2014-10-04T00:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":7.5,"RunTimeTicks":14400000000,"ProductionYear":2014,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":27,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"278626"},"ChildCount":27,"Status":"Ended","AirTime":"2014-10-04","AirDays":["Saturday"],"DisplayOrder":"aired","ImageTags":{"Primary":"4233a15db2384125d1471557b9909018","Banner":"7c7a78f90072ae461412902000c0d47e","Logo":"54a5e3d6582f71b92c7514769b7439da"},"BackdropImageTags":["cc179b3a7e2e192c899d7a0ff33dcb02"],"ImageBlurHashes":{"Backdrop":{"cc179b3a7e2e192c899d7a0ff33dcb02":"WOHvx6r@Ip$*5rxZ9IxZ5lNbxtNH9_NHtQJ8-7xZ~9t6NHj[M#xF"},"Primary":{"4233a15db2384125d1471557b9909018":"daK[oD-oafwK?Z%1NHI;}=xaRQaKx[s+RQj[o|S5jGW;"},"Banner":{"7c7a78f90072ae461412902000c0d47e":"HJEcwf}Y-Aw^OBobbrXRS}xGoLNHoL$%R+afj[WV"},"Logo":{"54a5e3d6582f71b92c7514769b7439da":"OC7A#ooK9ZX8RjWBozWqa|ofoLWBayWB0eWq-pnit7ofWB"}},"LocationType":"FileSystem","EndDate":"2015-06-28T00:00:00.0000000Z"}} 2023-07-25T05:55:00.149Z [error][Jellyfin Sync]: Failed to process Jellyfin item. Id: 21d7e53792d75e2d5cef0098bd882e2d {"errorMessage":"[TMDB] Failed to get TV show using the external TVDB ID: [TMDB] Failed to find by external ID: Request failed with status code 400","jellyfinitem":{"Name":"【我推的孩子】","ServerId":"647a10d423244eed8ae61afe7eeb7318","Id":"21d7e53792d75e2d5cef0098bd882e2d","PremiereDate":"2023-04-12T00:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":7.6,"RunTimeTicks":14400000000,"ProductionYear":2023,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":11,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"421069"},"ChildCount":3,"Status":"Continuing","AirTime":"2023-04-12","AirDays":["Wednesday"],"DisplayOrder":"aired","ImageTags":{"Primary":"9cfddd71ca16c6326f33d28ae8a2d4e2","Banner":"f9f1050355b87ed35c33e96a043a9d32","Logo":"cbcd51b286faee521e7ee3fa6f168332","Thumb":"6ce8506c8966f48a0e3838a4b6e0e772"},"BackdropImageTags":["ec2a3cb06f17461ae19f4b3a610319e7"],"ImageBlurHashes":{"Backdrop":{"ec2a3cb06f17461ae19f4b3a610319e7":"WfM?D7?^kq~VyW%3ogxv%g-oS4M}TJs;n5o|RjM{?HxukVxaW;of"},"Primary":{"9cfddd71ca16c6326f33d28ae8a2d4e2":"dXJ~{3|y:u=}}K#m#s$j9Rn5%KnP#bwbt3V{^Rnhf,wP"},"Banner":{"f9f1050355b87ed35c33e96a043a9d32":"H,CQQWo}NHt8tRxwxcSNac-@t8W?t7oyxut7bbax"},"Logo":{"cbcd51b286faee521e7ee3fa6f168332":"ORC?Q6%M.8R6sCN@t7j[ayofjujtayj[0KM{R6o|buxGe:"},"Thumb":{"6ce8506c8966f48a0e3838a4b6e0e772":"NoFh}CxbIloyMxVs?dozNEoeenWAcDf+R*oIoMWY"}},"LocationType":"FileSystem","EndDate":"2020-03-27T00:00:00.0000000Z"}} 2023-07-25T05:55:00.155Z [error][Jellyfin Sync]: Failed to process Jellyfin item. Id: 010665d585f9f9e83ad5bfc2d6aecba6 {"errorMessage":"[TMDB] Failed to get TV show using the external TVDB ID: [TMDB] Failed to find by external ID: Request failed with status code 400","jellyfinitem":{"Name":"偶像大师 灰姑娘女孩 U149","ServerId":"647a10d423244eed8ae61afe7eeb7318","Id":"010665d585f9f9e83ad5bfc2d6aecba6","PremiereDate":"2023-04-05T00:00:00.0000000Z","OfficialRating":"10","ChannelId":null,"CommunityRating":7.9,"RunTimeTicks":14400000000,"ProductionYear":2023,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":12,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"424278"},"ChildCount":7,"Status":"Ended","AirTime":"2023-04-05","AirDays":["Wednesday"],"DisplayOrder":"aired","ImageTags":{"Primary":"d80e5cac0592545543c4a521794b2ac8","Logo":"bfe110db1f15852ccaf470023e3bb714","Thumb":"f8481c645d5136272bc1e6b15afec910"},"BackdropImageTags":["34564053659546580626e709204a4006"],"ImageBlurHashes":{"Backdrop":{"34564053659546580626e709204a4006":"WPNmAx.R_N^+xu?vx@-;%3W.Sia{s$-pNFi^I[ae~U-.R*t5IWNb"},"Primary":{"d80e5cac0592545543c4a521794b2ac8":"dcI5[BpfIok=CQpIs*X6x-xsn#em%3RqM|nOtlkDnjWC"},"Logo":{"bfe110db1f15852ccaf470023e3bb714":"OaL|.kt7}?oeiwozM{GakBo|j]-oV@so9]VtjEbFW;ozt7"},"Thumb":{"f8481c645d5136272bc1e6b15afec910":"NPHC.vGwo[tRIntTL3-CMOVZVttQIZw}r]WCxnxV"}},"LocationType":"FileSystem","EndDate":"2023-06-29T00:00:00.0000000Z"}} 2023-07-25T05:55:00.162Z [error][Jellyfin Sync]: Failed to process Jellyfin item. Id: bfed7e898464fae6a06b3a0da48f8567 {"errorMessage":"[TMDB] Failed to get TV show using the external TVDB ID: [TMDB] Failed to find by external ID: Request failed with status code 400","jellyfinitem":{"Name":"白圣女与黑牧师","ServerId":"647a10d423244eed8ae61afe7eeb7318","Id":"bfed7e898464fae6a06b3a0da48f8567","PremiereDate":"2023-07-12T00:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":7,"RunTimeTicks":14400000000,"ProductionYear":2023,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":2,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"421283"},"ChildCount":2,"Status":"Continuing","AirTime":"2023-07-12","AirDays":["Wednesday"],"DisplayOrder":"aired","ImageTags":{"Primary":"fa62d3f0ca672f73bf80c32d86137135","Logo":"b99378dc2c78b772e9291361bacc389a"},"BackdropImageTags":["dd6c14e1867023aa5cd34fe2f59dd5e7"],"ImageBlurHashes":{"Backdrop":{"dd6c14e1867023aa5cd34fe2f59dd5e7":"WuP?HkS*%K~V%ft6^*o~XAo0WBj]$xo#W;RjV[oz?GbdkXs,oKj]"},"Primary":{"fa62d3f0ca672f73bf80c32d86137135":"dYLzy^.8M_%1~XbvaKspyEW=RQS2FNoes,kDNHi_n$g3"},"Logo":{"b99378dc2c78b772e9291361bacc389a":"HHQP4+#n.=i{LIxZv4#AP8_kS}rsofKhbH#mSzO="}},"LocationType":"FileSystem"}} 2023-07-25T05:55:00.166Z [error][Jellyfin Sync]: Failed to process Jellyfin item. Id: 32ed4e0b0477690c8470707fbe08ee6a {"errorMessage":"[TMDB] Failed to get TV show using the external TVDB ID: [TMDB] Failed to find by external ID: Request failed with status code 400","jellyfinitem":{"Name":"和山田谈场Lv999的恋爱","ServerId":"647a10d423244eed8ae61afe7eeb7318","Id":"32ed4e0b0477690c8470707fbe08ee6a","PremiereDate":"2023-04-01T00:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":6.6,"RunTimeTicks":14400000000,"ProductionYear":2023,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":13,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"423413"},"ChildCount":3,"Status":"Ended","AirTime":"2023-04-01","AirDays":["Saturday"],"DisplayOrder":"aired","ImageTags":{"Primary":"853a8fdb8e4039623abb2ec79a65729d","Banner":"c1955b56cbb40ed83f5fa76494902675","Logo":"7f5cdec98262ae21d1102acde4f01724","Thumb":"20da3d9d7ada1a76d48826087d8f7871"},"BackdropImageTags":["9f3df409aa41b8a9a86dfab1e9ff6fef"],"ImageBlurHashes":{"Backdrop":{"9f3df409aa41b8a9a86dfab1e9ff6fef":"WhM%yGMy$y?GM{t7~prsN2r@xGX9XSM{nObct6ni%MWBnhs;WYay"},"Primary":{"853a8fdb8e4039623abb2ec79a65729d":"dZMZ]*RQ,-^j?^t7EOSL^*xZN1aMXoRlr;R.ozo|SwS5"},"Banner":{"c1955b56cbb40ed83f5fa76494902675":"H*OM+_sqbboNxZ%1Nbo#aK~qtQWFWBt6t7bvWWWA"},"Logo":{"7f5cdec98262ae21d1102acde4f01724":"OjFrksay0Jj[RjkCxuWBfkWBjut7WBf7NZWVnif6t7s:of"},"Thumb":{"20da3d9d7ada1a76d48826087d8f7871":"NdLX9[IC-P?ZRixs_MrrN1xaxFR-TJIVr=g3s:V?"}},"LocationType":"FileSystem","EndDate":"2023-06-25T00:00:00.0000000Z"}} 2023-07-25T05:55:04.176Z [info][Jellyfin Sync]: Beginning to process recently added for library: 电影 2023-07-25T05:55:04.311Z [error][Jellyfin Sync]: Failed to process Jellyfin item, id: ec08556cba757fcac1c8aae4a319ca6c {"errorMessage":"[TMDB] Failed to find media using external IMDb ID: [TMDB] Failed to find by external ID: Request failed with status code 400","jellyfinitem":{"Name":"碟中谍4:幽灵协议","ServerId":"647a10d423244eed8ae61afe7eeb7318","Id":"ec08556cba757fcac1c8aae4a319ca6c","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2011-12-07T00:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.1,"RunTimeTicks":79771197440,"ProductionYear":2011,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"56292"},"ChildCount":0,"VideoType":"VideoFile","ImageTags":{"Primary":"929c581c66fe6f8699ab3145db49e751","Logo":"b32b9bc24d9bd00bf4d310bdbd4214e1","Thumb":"2dde7973553a591aa028f65537a9dd2c"},"BackdropImageTags":["9d03e287fb200d0c363054b5d00a4781"],"ImageBlurHashes":{"Backdrop":{"9d03e287fb200d0c363054b5d00a4781":"W#IWx;%1-T%1bHso~TtPs.xZkBoL-oofNHoej[jt-nR+RkayWVjZ"},"Primary":{"929c581c66fe6f8699ab3145db49e751":"dKECOUJ.E1~WyE%1IoofD%WY%19GE2%1xZM{?bR-R*t7"},"Logo":{"b32b9bc24d9bd00bf4d310bdbd4214e1":"O$N,GJMxtRt7WBt7kC~CiwX8ozV@kCj[8_R5ozfke.kCkC"},"Thumb":{"2dde7973553a591aa028f65537a9dd2c":"NdKAD*?G=s-.-pxt^aR%xtxYM{Rk~VX9Ipt6RlWC"}},"LocationType":"FileSystem","MediaType":"Video"}} 2023-07-25T05:55:04.322Z [error][Jellyfin Sync]: Failed to process Jellyfin item, id: 44fa137f65390aad226ac5b9f1559b65 {"errorMessage":"[TMDB] Failed to find media using external IMDb ID: [TMDB] Failed to find by external ID: Request failed with status code 400","jellyfinitem":{"Name":"命运之夜:无限剑制","ServerId":"647a10d423244eed8ae61afe7eeb7318","Id":"44fa137f65390aad226ac5b9f1559b65","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2010-01-23T00:00:00.0000000Z","ChannelId":null,"CommunityRating":7.121,"RunTimeTicks":63413350400,"ProductionYear":2010,"IsFolder":false,"Type":"Movie","UserData":{"PlayedPercentage":21.627196660468517,"PlaybackPositionTicks":13714530000,"PlayCount":2,"IsFavorite":false,"LastPlayedDate":"2023-07-18T10:10:03.0218628Z","Played":false,"Key":"46304"},"ChildCount":0,"VideoType":"VideoFile","ImageTags":{"Primary":"fe8a07fabcab825558d709454b668538"},"BackdropImageTags":["ef58d04cbd19b3c181891528c5159152"],"ImageBlurHashes":{"Backdrop":{"ef58d04cbd19b3c181891528c5159152":"WTCEay}ssUNHsm-Av~#mxFbaR*RkaxoJoLbHS3R+$*xZayWBj[of"},"Primary":{"fe8a07fabcab825558d709454b668538":"dNHJEp-U=G=d[W$zIonOWXWEI;WB$*R-bIbH0#NaJ9Na"}},"LocationType":"FileSystem","MediaType":"Video"}} 2023-07-25T05:55:04.327Z [error][Jellyfin Sync]: Failed to process Jellyfin item, id: 6626b113b693d544ad6b4bed25c97e5e {"errorMessage":"[TMDB] Failed to find media using external IMDb ID: [TMDB] Failed to find by external ID: Request failed with status code 400","jellyfinitem":{"Name":"明日之战","ServerId":"647a10d423244eed8ae61afe7eeb7318","Id":"6626b113b693d544ad6b4bed25c97e5e","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2021-09-03T00:00:00.0000000Z","CriticRating":52,"OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.549,"RunTimeTicks":82862505984,"ProductionYear":2021,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"588228"},"ChildCount":0,"VideoType":"VideoFile","ImageTags":{"Primary":"3a89050abce5f3f9ae2b5948ebbddc4a","Logo":"877f0a9840736c00c28761d16b6bda5f","Thumb":"7cbc4f93a3cb31917f01430c27f86857"},"BackdropImageTags":["3dfddff0a4bcbb6ef3a341eb76a4f653"],"ImageBlurHashes":{"Backdrop":{"3dfddff0a4bcbb6ef3a341eb76a4f653":"WcHT,KsCR*M{I;xtyDI=aes.R*xa~Bt6R+soR+aexas:fjbGShWB"},"Primary":{"3a89050abce5f3f9ae2b5948ebbddc4a":"dYL3M,$iOE=|KOOYENof}@xtEMxZ-VV@j[ay56W=a#Rj"},"Logo":{"877f0a9840736c00c28761d16b6bda5f":"ObD0Gpay00j[xufQt7WBRjogxuRjIUt79Fay%Mj[t7WBRj"},"Thumb":{"7cbc4f93a3cb31917f01430c27f86857":"NXINH#%3bFIUE2%1yWE*aKn~Nb$*}@NGWVsoShs:"}},"LocationType":"FileSystem","MediaType":"Video"}}

Fallenbagel commented 1 year ago

Did you check if you can reach the proxy within the container? By doing docker exec -it jellyseerr sh?

Yukk1No commented 1 year ago

Did you check if you can reach the proxy within the container? By doing docker exec -it jellyseerr sh?

Yes, the proxy function well by doing curl test.

AnoZu commented 1 year ago

I'm also facing this same problem.

baiyz0825 commented 1 year ago

i have the same issu

Fallenbagel commented 1 year ago

Could all of you try network_mode: host and remove the port bindings?

AnoZu commented 1 year ago

tried but didn't work. same problem as Yukk1No mentioned

Fallenbagel commented 1 year ago

tried but didn't work. same problem as Yukk1No mentioned

Well I'm out of ideas. I use v2ray/xray daily although I now do dokodemodoor on a pi acting as the gateway and everyrhing works seamlessly.

However, I set up xray/v2ray with socks5 and then used a socks5->http converter to recreate this issue, and passing the proxy through docker environment, jellyseerr worked flawlessly.

The one other idea I have is, try running jellyseerr natively instead of docker. And have http proxy passed on the entire system env.

HernandoR commented 1 year ago

You gonna be surprised.

All the trick is no quotation

aka rather than

    environment:
        - no_proxy="localhost,127.0.0.1"

you should do

    environment:
        - no_proxy=localhost,127.0.0.1

and all is fine.

Geeksun2018 commented 11 months ago

jellyseerr: 图像:fallbagel/jellyseerr:最新 容器名称:jellyseerr 主机名:jellyseer 网络模式:桥接

当我设置代理服务器时,无法打开网页,提示内部服务器错误 当我取消代理时,一切恢复正常 请注意,你的yaml中的HTTP_PROXY和HTTPS_PROXY后面不要有引号。 然而,根据配置后 图像 图像@Fallenbagel的格式,我在所有页面上都遇到了 500 内部服务器错误。

您可以执行到容器中并对您的代理或其他东西进行卷曲吗?查看容器是否可以到达您的代理。您可以尝试的另一件事是将其置于主机模式并添加 http_proxies。我的猜测是容器无法到达本地代理,因此抛出 500 错误

首先感谢您的回复!我已经使用您提到的方法测试了与代理服务器的连接,并且似乎工作正常。使用的IP地址是我的代理服务器的IP地址,我可以毫无问题地访问Google等网站(我在中国大陆)。但是,我在容器后端不断遇到类似的错误。你能看一下它们吗?

2023-07-25T05:53:59.971Z [error][Jellyfin Sync]: Sync interrupted {"errorMessage":"Sync was aborted."} 2023-07-25T05:54:00.007Z [debug][Jobs]: Starting scheduled job: Download Sync 2023-07-25T05:54:07.893Z [debug][API]: Something went wrong retrieving popular movies {"errorMessage":"[TMDB] Failed to fetch discover movies: Request failed with status code 400"} 2023-07-25T05:54:07.981Z [debug][API]: Something went wrong retrieving trending items {"errorMessage":"[TMDB] Failed to fetch all trending: Request failed with status code 400"} 2023-07-25T05:54:08.078Z [debug][API]: Something went wrong retrieving the movie genre slider {"errorMessage":"[TMDB] Failed to fetch movie genres: Request failed with status code 400"} 2023-07-25T05:54:08.735Z [warn][GitHub API]: Failed to retrieve GitHub releases. This may be an issue on GitHub's end. Overseerr can't check if it's on the latest version. {"errorMessage":"Request failed with status code 503"} 2023-07-25T05:54:08.892Z [debug][API]: Something went wrong retrieving movie {"errorMessage":"[TMDB] Failed to fetch movie details: Request failed with status code 400","movieId":"889575"} 2023-07-25T05:54:08.895Z [debug][API]: Something went wrong retrieving the series genre slider {"errorMessage":"[TMDB] Failed to fetch TV genres: Request failed with status code 400"} 2023-07-25T05:54:08.901Z [debug][API]: Something went wrong retrieving popular series {"errorMessage":"[TMDB] Failed to fetch discover TV: Request failed with status code 400"} 2023-07-25T05:54:08.979Z [debug][API]: Something went wrong retrieving popular movies {"errorMessage":"[TMDB] Failed to fetch discover movies: Request failed with status code 400"} 2023-07-25T05:54:08.981Z [debug][API]: Something went wrong retrieving popular series {"errorMessage":"[TMDB] Failed to fetch discover TV: Request failed with status code 400"} 2023-07-25T05:54:13.437Z [debug][API]: Something went wrong retrieving popular movies {"errorMessage":"[TMDB] Failed to fetch discover movies: Request failed with status code 400"} 2023-07-25T05:54:14.028Z [debug][API]: Something went wrong retrieving the movie genre slider {"errorMessage":"[TMDB] Failed to fetch movie genres: Request failed with status code 400"} 2023-07-25T05:54:14.037Z [debug][API]: Something went wrong retrieving trending items {"errorMessage":"[TMDB] Failed to fetch all trending: Request failed with status code 400"} 2023-07-25T05:54:15.402Z [debug][API]: Something went wrong retrieving popular movies {"errorMessage":"[TMDB] Failed to fetch discover movies: Request failed with status code 400"} 2023-07-25T05:54:15.505Z [debug][API]: Something went wrong retrieving popular series {"errorMessage":"[TMDB] Failed to fetch discover TV: Request failed with status code 400"} 2023-07-25T05:54:15.507Z [debug][API]: Something went wrong retrieving the series genre slider {"errorMessage":"[TMDB] Failed to fetch TV genres: Request failed with status code 400"} 2023-07-25T05:54:20.034Z [debug][API]: Something went wrong retrieving popular movies {"errorMessage":"[TMDB] Failed to fetch discover movies: Request failed with status code 400"} 2023-07-25T05:54:24.739Z [debug][API]: Something went wrong retrieving popular movies {"errorMessage":"[TMDB] Failed to fetch discover movies: Request failed with status code 400"} 2023-07-25T05:54:25.273Z [debug][API]: Something went wrong retrieving popular movies {"errorMessage":"[TMDB] Failed to fetch discover movies: Request failed with status code 400"} 2023-07-25T05:54:25.275Z [debug][API]: Something went wrong retrieving trending items {"errorMessage":"[TMDB] Failed to fetch all trending: Request failed with status code 400"} 2023-07-25T05:54:25.287Z [debug][API]: Something went wrong retrieving the movie genre slider {"errorMessage":"[TMDB] Failed to fetch movie genres: Request failed with status code 400"} 2023-07-25T05:54:25.371Z [debug][API]: Something went wrong retrieving popular series {"errorMessage":"[TMDB] Failed to fetch discover TV: Request failed with status code 400"} 2023-07-25T05:54:25.373Z [debug][API]: Something went wrong retrieving the series genre slider {"errorMessage":"[TMDB] Failed to fetch TV genres: Request failed with status code 400"} 2023-07-25T05:54:25.933Z [warn][GitHub API]: Failed to retrieve GitHub releases. This may be an issue on GitHub's end. Overseerr can't check if it's on the latest version. {"errorMessage":"Request failed with status code 503"} 2023-07-25T05:54:26.776Z [debug][API]: Something went wrong retrieving popular series {"errorMessage":"[TMDB] Failed to fetch discover TV: Request failed with status code 400"} 2023-07-25T05:54:27.198Z [debug][API]: Something went wrong retrieving movie {"errorMessage":"[TMDB] Failed to fetch movie details: Request failed with status code 400","movieId":"889575"} 2023-07-25T05:54:29.611Z [debug][API]: Something went wrong retrieving movies by studio {"errorMessage":"[TMDB] Failed to fetch movie studio: Request failed with status code 400","studioId":"127928"} 2023-07-25T05:54:31.316Z [debug][API]: Something went wrong retrieving popular movies {"errorMessage":"[TMDB] Failed to fetch discover movies: Request failed with status code 400"} 2023-07-25T05:54:32.976Z [debug][API]: Something went wrong retrieving trending items {"errorMessage":"[TMDB] Failed to fetch all trending: Request failed with status code 400"} 2023-07-25T05:54:32.980Z [debug][API]: Something went wrong retrieving popular series {"errorMessage":"[TMDB] Failed to fetch discover TV: Request failed with status code 400"} 2023-07-25T05:54:32.982Z [debug][API]: Something went wrong retrieving popular movies {"errorMessage":"[TMDB] Failed to fetch discover movies: Request failed with status code 400"} 2023-07-25T05:54:32.984Z [debug][API]: Something went wrong retrieving the movie genre slider {"errorMessage":"[TMDB] Failed to fetch movie genres: Request failed with status code 400"} 2023-07-25T05:54:32.991Z [debug][API]: Something went wrong retrieving popular movies {"errorMessage":"[TMDB] Failed to fetch discover movies: Request failed with status code 400"} 2023-07-25T05:54:33.002Z [debug][API]: Something went wrong retrieving the series genre slider {"errorMessage":"[TMDB] Failed to fetch TV genres: Request failed with status code 400"} 2023-07-25T05:54:34.175Z [debug][API]: Something went wrong retrieving popular series {"errorMessage":"[TMDB] Failed to fetch discover TV: Request failed with status code 400"} 2023-07-25T05:54:34.316Z [debug][API]: Something went wrong retrieving movie {"errorMessage":"[TMDB] Failed to fetch movie details: Request failed with status code 400","movieId":"889575"} 2023-07-25T05:54:35.535Z [debug][API]: Something went wrong retrieving movies by studio {"errorMessage":"[TMDB] Failed to fetch movie studio: Request failed with status code 400","studioId":"34"} 2023-07-25T05:54:39.604Z [debug][API]: Something went wrong retrieving movies by studio {"errorMessage":"[TMDB] Failed to fetch movie studio: Request failed with status code 400","studioId":"34"} 2023-07-25T05:54:40.305Z [warn][GitHub API]: Failed to retrieve GitHub releases. This may be an issue on GitHub's end. Overseerr can't check if it's on the latest version. {"errorMessage":"Request failed with status code 503"} 2023-07-25T05:54:46.129Z [debug][API]: Something went wrong retrieving movies by studio {"errorMessage":"[TMDB] Failed to fetch movie studio: Request failed with status code 400","studioId":"34"} 2023-07-25T05:55:00.013Z [debug][Jobs]: Starting scheduled job: Download Sync 2023-07-25T05:55:00.015Z [info][Jobs]: Starting scheduled job: Jellyfin Recently Added Sync 2023-07-25T05:55:00.016Z [info][Jellyfin Sync]: Jellyfin Sync Starting {"sessionId":"c75ca00e-3fc2-4db8-9f9e-184ce15eff68"} 2023-07-25T05:55:00.018Z [info][Jellyfin Sync]: Beginning to process recently added for library: 动画 2023-07-25T05:55:00.144Z [error][Jellyfin Sync]: Failed to process Jellyfin item. Id: 9148aad7b8c38298dfe5afdb6f9cc6c2 {"errorMessage":"[TMDB] Failed to get TV show using the external TVDB ID: [TMDB] Failed to find by external ID: Request failed with status code 400","jellyfinitem":{"Name":"久保同学不放过我","ServerId":"647a10d423244eed8ae61afe7eeb7318","Id":"9148aad7b8c38298dfe5afdb6f9cc6c2","PremiereDate":"2023-01-10T00:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":6.4,"RunTimeTicks":14400000000,"ProductionYear":2023,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":12,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"420084"},"ChildCount":2,"Status":"Ended","AirTime":"2023-01-10","AirDays":["Tuesday"],"DisplayOrder":"aired","ImageTags":{"Primary":"09aa263a29311a45dd22f94254305ed2","Banner":"dd4589e1e2728452ffdf8a27c4f3cdae","Logo":"cf0f24a5856f3152c913153705357f44","Thumb":"15c6e586c16ceadeecdf5a7992f8611a"},"BackdropImageTags":["14403ceccf6cc57f073757589b07f321"],"ImageBlurHashes":{"Backdrop":{"14403ceccf6cc57f073757589b07f321":"WYE|YpIdF|_4p0JBXRxwk8NLogS0S~RPs:bcofs:b_NGozxuogt7"},"Primary":{"09aa263a29311a45dd22f94254305ed2":"dTOD5@57$*EL?^s;RPr?-:o|IUWCX8ozxua}ogX9kVxZ"},"Banner":{"dd4589e1e2728452ffdf8a27c4f3cdae":"H~QJAt.8aKoN-;tQjaxuoz~qxbaKaft7kCkCt7bb"},"Logo":{"cf0f24a5856f3152c913153705357f44":"OIRfd|RQ-p-Vi^-:Na~CrERjJ7N@XSRjx]oLRjj[bHRje:"},"Thumb":{"15c6e586c16ceadeecdf5a7992f8611a":"NeQ0Er9FD%yDtS?I_4o#kXt7njjF?bbIRmn,WBbc"}},"LocationType":"FileSystem","EndDate":"2023-06-20T00:00:00.0000000Z"}} 2023-07-25T05:55:00.148Z [error][Jellyfin Sync]: Failed to process Jellyfin item. Id: 922e69cd40cc47372b992e84787b535f {"errorMessage":"[TMDB] Failed to get TV show using the external TVDB ID: [TMDB] Failed to find by external ID: Request failed with status code 400","jellyfinitem":{"Name":"Fate/stay night [Unlimited Blade Works]","ServerId":"647a10d423244eed8ae61afe7eeb7318","Id":"922e69cd40cc47372b992e84787b535f","PremiereDate":"2014-10-04T00:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":7.5,"RunTimeTicks":14400000000,"ProductionYear":2014,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":27,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"278626"},"ChildCount":27,"Status":"Ended","AirTime":"2014-10-04","AirDays":["Saturday"],"DisplayOrder":"aired","ImageTags":{"Primary":"4233a15db2384125d1471557b9909018","Banner":"7c7a78f90072ae461412902000c0d47e","Logo":"54a5e3d6582f71b92c7514769b7439da"},"BackdropImageTags":["cc179b3a7e2e192c899d7a0ff33dcb02"],"ImageBlurHashes":{"Backdrop":{"cc179b3a7e2e192c899d7a0ff33dcb02":"WOHvx6r@Ip$*5rxZ9IxZ5lNbxtNH9_NHtQJ8-7xZ~9t6NHj[M#xF"},"Primary":{"4233a15db2384125d1471557b9909018":"daK[oD-oafwK?Z%1NHI;}=xaRQaKx[s+RQj[o|S5jGW;"},"Banner":{"7c7a78f90072ae461412902000c0d47e":"HJEcwf}Y-Aw^OBobbrXRS}xGoLNHoL$%R+afj[WV"},"Logo":{"54a5e3d6582f71b92c7514769b7439da":"OC7A#ooK9ZX8RjWBozWqa|ofoLWBayWB0eWq-pnit7ofWB"}},"LocationType":"FileSystem","EndDate":"2015-06-28T00:00:00.0000000Z"}} 2023-07-25T05:55:00.149Z [error][Jellyfin Sync]: Failed to process Jellyfin item. Id: 21d7e53792d75e2d5cef0098bd882e2d {"errorMessage":"[TMDB] Failed to get TV show using the external TVDB ID: [TMDB] Failed to find by external ID: Request failed with status code 400","jellyfinitem":{"Name":"【我推的孩子】","ServerId":"647a10d423244eed8ae61afe7eeb7318","Id":"21d7e53792d75e2d5cef0098bd882e2d","PremiereDate":"2023-04-12T00:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":7.6,"RunTimeTicks":14400000000,"ProductionYear":2023,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":11,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"421069"},"ChildCount":3,"Status":"Continuing","AirTime":"2023-04-12","AirDays":["Wednesday"],"DisplayOrder":"aired","ImageTags":{"Primary":"9cfddd71ca16c6326f33d28ae8a2d4e2","Banner":"f9f1050355b87ed35c33e96a043a9d32","Logo":"cbcd51b286faee521e7ee3fa6f168332","Thumb":"6ce8506c8966f48a0e3838a4b6e0e772"},"BackdropImageTags":["ec2a3cb06f17461ae19f4b3a610319e7"],"ImageBlurHashes":{"Backdrop":{"ec2a3cb06f17461ae19f4b3a610319e7":"WfM?D7?^kq~VyW%3ogxv%g-oS4M}TJs;n5o|RjM{?HxukVxaW;of"},"Primary":{"9cfddd71ca16c6326f33d28ae8a2d4e2":"dXJ~{3|y:u=}}K#m#s$j9Rn5%KnP#bwbt3V{^Rnhf,wP"},"Banner":{"f9f1050355b87ed35c33e96a043a9d32":"H,CQQWo}NHt8tRxwxcSNac-@t8W?t7oyxut7bbax"},"Logo":{"cbcd51b286faee521e7ee3fa6f168332":"ORC?Q6%M.8R6sCN@t7j[ayofjujtayj[0KM{R6o|buxGe:"},"Thumb":{"6ce8506c8966f48a0e3838a4b6e0e772":"NoFh}CxbIloyMxVs?dozNEoeenWAcDf+R*oIoMWY"}},"LocationType":"FileSystem","EndDate":"2020-03-27T00:00:00.0000000Z"}} 2023-07-25T05:55:00.155Z [error][Jellyfin Sync]: Failed to process Jellyfin item. Id: 010665d585f9f9e83ad5bfc2d6aecba6 {"errorMessage":"[TMDB] Failed to get TV show using the external TVDB ID: [TMDB] Failed to find by external ID: Request failed with status code 400","jellyfinitem":{"Name":"偶像大师 灰姑娘女孩 U149","ServerId":"647a10d423244eed8ae61afe7eeb7318","Id":"010665d585f9f9e83ad5bfc2d6aecba6","PremiereDate":"2023-04-05T00:00:00.0000000Z","OfficialRating":"10","ChannelId":null,"CommunityRating":7.9,"RunTimeTicks":14400000000,"ProductionYear":2023,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":12,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"424278"},"ChildCount":7,"Status":"Ended","AirTime":"2023-04-05","AirDays":["Wednesday"],"DisplayOrder":"aired","ImageTags":{"Primary":"d80e5cac0592545543c4a521794b2ac8","Logo":"bfe110db1f15852ccaf470023e3bb714","Thumb":"f8481c645d5136272bc1e6b15afec910"},"BackdropImageTags":["34564053659546580626e709204a4006"],"ImageBlurHashes":{"Backdrop":{"34564053659546580626e709204a4006":"WPNmAx.R_N^+xu?vx@-;%3W.Sia{s$-pNFi^I[ae~U-.R*t5IWNb"},"Primary":{"d80e5cac0592545543c4a521794b2ac8":"dcI5[BpfIok=CQpIs*X6x-xsn#em%3RqM|nOtlkDnjWC"},"Logo":{"bfe110db1f15852ccaf470023e3bb714":"OaL|.kt7}?oeiwozM{GakBo|j]-oV@so9]VtjEbFW;ozt7"},"Thumb":{"f8481c645d5136272bc1e6b15afec910":"NPHC.vGwo[tRIntTL3-CMOVZVttQIZw}r]WCxnxV"}},"LocationType":"FileSystem","EndDate":"2023-06-29T00:00:00.0000000Z"}} 2023-07-25T05:55:00.162Z [error][Jellyfin Sync]: Failed to process Jellyfin item. Id: bfed7e898464fae6a06b3a0da48f8567 {"errorMessage":"[TMDB] Failed to get TV show using the external TVDB ID: [TMDB] Failed to find by external ID: Request failed with status code 400","jellyfinitem":{"Name":"白圣女与黑牧师","ServerId":"647a10d423244eed8ae61afe7eeb7318","Id":"bfed7e898464fae6a06b3a0da48f8567","PremiereDate":"2023-07-12T00:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":7,"RunTimeTicks":14400000000,"ProductionYear":2023,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":2,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"421283"},"ChildCount":2,"Status":"Continuing","AirTime":"2023-07-12","AirDays":["Wednesday"],"DisplayOrder":"aired","ImageTags":{"Primary":"fa62d3f0ca672f73bf80c32d86137135","Logo":"b99378dc2c78b772e9291361bacc389a"},"BackdropImageTags":["dd6c14e1867023aa5cd34fe2f59dd5e7"],"ImageBlurHashes":{"Backdrop":{"dd6c14e1867023aa5cd34fe2f59dd5e7":"WuP?HkS*%K~V%ft6^*o~XAo0WBj]$xo#W;RjV[oz?GbdkXs,oKj]"},"Primary":{"fa62d3f0ca672f73bf80c32d86137135":"dYLzy^.8M_%1~XbvaKspyEW=RQS2FNoes,kDNHi_n$g3"},"Logo":{"b99378dc2c78b772e9291361bacc389a":"HHQP4+#n.=i{LIxZv4#AP8_kS}rsofKhbH#mSzO="}},"LocationType":"FileSystem"}} 2023-07-25T05:55:00.166Z [error][Jellyfin Sync]: Failed to process Jellyfin item. Id: 32ed4e0b0477690c8470707fbe08ee6a {"errorMessage":"[TMDB] Failed to get TV show using the external TVDB ID: [TMDB] Failed to find by external ID: Request failed with status code 400","jellyfinitem":{"Name":"和山田谈场Lv999的恋爱","ServerId":"647a10d423244eed8ae61afe7eeb7318","Id":"32ed4e0b0477690c8470707fbe08ee6a","PremiereDate":"2023-04-01T00:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":6.6,"RunTimeTicks":14400000000,"ProductionYear":2023,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":13,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"423413"},"ChildCount":3,"Status":"Ended","AirTime":"2023-04-01","AirDays":["Saturday"],"DisplayOrder":"aired","ImageTags":{"Primary":"853a8fdb8e4039623abb2ec79a65729d","Banner":"c1955b56cbb40ed83f5fa76494902675","Logo":"7f5cdec98262ae21d1102acde4f01724","Thumb":"20da3d9d7ada1a76d48826087d8f7871"},"BackdropImageTags":["9f3df409aa41b8a9a86dfab1e9ff6fef"],"ImageBlurHashes":{"Backdrop":{"9f3df409aa41b8a9a86dfab1e9ff6fef":"WhM%yGMy$y?GM{t7~prsN2r@xGX9XSM{nObct6ni%MWBnhs;WYay"},"Primary":{"853a8fdb8e4039623abb2ec79a65729d":"dZMZ]*RQ,-^j?^t7EOSL^*xZN1aMXoRlr;R.ozo|SwS5"},"Banner":{"c1955b56cbb40ed83f5fa76494902675":"H*OM+_sqbboNxZ%1Nbo#aK~qtQWFWBt6t7bvWWWA"},"Logo":{"7f5cdec98262ae21d1102acde4f01724":"OjFrksay0Jj[RjkCxuWBfkWBjut7WBf7NZWVnif6t7s:of"},"Thumb":{"20da3d9d7ada1a76d48826087d8f7871":"NdLX9[IC-P?ZRixs_MrrN1xaxFR-TJIVr=g3s:V?"}},"LocationType":"FileSystem","EndDate":"2023-06-25T00:00:00.0000000Z"}} 2023-07-25T05:55:04.176Z [info][Jellyfin Sync]: Beginning to process recently added for library: 电影 2023-07-25T05:55:04.311Z [error][Jellyfin Sync]: Failed to process Jellyfin item, id: ec08556cba757fcac1c8aae4a319ca6c {"errorMessage":"[TMDB] Failed to find media using external IMDb ID: [TMDB] Failed to find by external ID: Request failed with status code 400","jellyfinitem":{"Name":"碟中谍4:幽灵协议","ServerId":"647a10d423244eed8ae61afe7eeb7318","Id":"ec08556cba757fcac1c8aae4a319ca6c","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2011-12-07T00:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.1,"RunTimeTicks":79771197440,"ProductionYear":2011,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"56292"},"ChildCount":0,"VideoType":"VideoFile","ImageTags":{"Primary":"929c581c66fe6f8699ab3145db49e751","Logo":"b32b9bc24d9bd00bf4d310bdbd4214e1","Thumb":"2dde7973553a591aa028f65537a9dd2c"},"BackdropImageTags":["9d03e287fb200d0c363054b5d00a4781"],"ImageBlurHashes":{"Backdrop":{"9d03e287fb200d0c363054b5d00a4781":"W#IWx;%1-T%1bHso~TtPs.xZkBoL-oofNHoej[jt-nR+RkayWVjZ"},"Primary":{"929c581c66fe6f8699ab3145db49e751":"dKECOUJ.E1~WyE%1IoofD%WY%19GE2%1xZM{?bR-R*t7"},"Logo":{"b32b9bc24d9bd00bf4d310bdbd4214e1":"O$N,GJMxtRt7WBt7kC~CiwX8ozV@kCj[8_R5ozfke.kCkC"},"Thumb":{"2dde7973553a591aa028f65537a9dd2c":"NdKAD*?G=s-.-pxt^aR%xtxYM{Rk~VX9Ipt6RlWC"}},"LocationType":"FileSystem","MediaType":"Video"}} 2023-07-25T05:55:04.322Z [error][Jellyfin Sync]: Failed to process Jellyfin item, id: 44fa137f65390aad226ac5b9f1559b65 {"errorMessage":"[TMDB] Failed to find media using external IMDb ID: [TMDB] Failed to find by external ID: Request failed with status code 400","jellyfinitem":{"Name":"命运之夜:无限剑制","ServerId":"647a10d423244eed8ae61afe7eeb7318","Id":"44fa137f65390aad226ac5b9f1559b65","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2010-01-23T00:00:00.0000000Z","ChannelId":null,"CommunityRating":7.121,"RunTimeTicks":63413350400,"ProductionYear":2010,"IsFolder":false,"Type":"Movie","UserData":{"PlayedPercentage":21.627196660468517,"PlaybackPositionTicks":13714530000,"PlayCount":2,"IsFavorite":false,"LastPlayedDate":"2023-07-18T10:10:03.0218628Z","Played":false,"Key":"46304"},"ChildCount":0,"VideoType":"VideoFile","ImageTags":{"Primary":"fe8a07fabcab825558d709454b668538"},"BackdropImageTags":["ef58d04cbd19b3c181891528c5159152"],"ImageBlurHashes":{"Backdrop":{"ef58d04cbd19b3c181891528c5159152":"WTCEay}ssUNHsm-Av~#mxFbaR*RkaxoJoLbHS3R+$*xZayWBj[of"},"Primary":{"fe8a07fabcab825558d709454b668538":"dNHJEp-U=G=d[W$zIonOWXWEI;WB$*R-bIbH0#NaJ9Na"}},"LocationType":"FileSystem","MediaType":"Video"}} 2023-07-25T05:55:04.327Z [error][Jellyfin Sync]: Failed to process Jellyfin item, id: 6626b113b693d544ad6b4bed25c97e5e {"errorMessage":"[TMDB] Failed to find media using external IMDb ID: [TMDB] Failed to find by external ID: Request failed with status code 400","jellyfinitem":{"Name":"明日之战","ServerId":"647a10d423244eed8ae61afe7eeb7318","Id":"6626b113b693d544ad6b4bed25c97e5e","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2021-09-03T00:00:00.0000000Z","CriticRating":52,"OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.549,"RunTimeTicks":82862505984,"ProductionYear":2021,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"588228"},"ChildCount":0,"VideoType":"VideoFile","ImageTags":{"Primary":"3a89050abce5f3f9ae2b5948ebbddc4a","Logo":"877f0a9840736c00c28761d16b6bda5f","Thumb":"7cbc4f93a3cb31917f01430c27f86857"},"BackdropImageTags":["3dfddff0a4bcbb6ef3a341eb76a4f653"],"ImageBlurHashes":{"Backdrop":{"3dfddff0a4bcbb6ef3a341eb76a4f653":"WcHT,KsCR*M{I;xtyDI=aes.R*xa~Bt6R+soR+aexas:fjbGShWB"},"Primary":{"3a89050abce5f3f9ae2b5948ebbddc4a":"dYL3M,$iOE=|KOOYENof}@xtEMxZ-VV@j[ay56W=a#Rj"},"Logo":{"877f0a9840736c00c28761d16b6bda5f":"ObD0Gpay00j[xufQt7WBRjogxuRjIUt79Fay%Mj[t7WBRj"},"Thumb":{"7cbc4f93a3cb31917f01430c27f86857":"NXINH#%3bFIUE2%1yWE*aKn~Nb$*}@NGWVsoShs:"}},"LocationType":"FileSystem","MediaType":"Video"}}

I have also encountered the same problem. How did you solve it?

Fallenbagel commented 11 months ago

@Geeksun2018 don't use quotes " when you define the proxy hosts

Geeksun2018 commented 11 months ago

@Geeksun2018"定义代理主机时不使用引号 Thank you very much for your reply. This is my Docker Compose. yml file. I have no issues with proxy in the container and can successfully access any website through the proxy. image But my jellyseerr always displays 500- Internal Server Error. Here is my log 2023-11-12T12:59:22.287Z [error][Jellyfin Sync]: Failed to process Jellyfin item. Id: 7765b81103ff9e76d454090c87f26154 {"errorMessage":"[TMDB] Failed to get TV show using the external TVDB ID: [TMDB] Failed to find by external ID: Request failed with status code 400","jellyfinitem":{"Name":"咒术回战","ServerId":"34665d5296714a63a6bc626d87e1b33a","Id":"7765b81103ff9e76d454090c87f26154","PremiereDate":"2020-10-03T00:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":8.566,"RunTimeTicks":14400000000,"ProductionYear":2020,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":15,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"377543"},"Status":"Continuing","AirDays":[],"ImageTags":{"Primary":"369d87eae92ca1dd8d17415509f4d7a0","Logo":"344bbb4af9f6967b9235fb2f679b6fc2"},"BackdropImageTags":["c9fe852bde7d22661dcb924cdeb92797"],"ImageBlurHashes":{"Backdrop":{"c9fe852bde7d22661dcb924cdeb92797":"WOG[H8#X#re[Vs$*~DwNwM?Hs:E1$,sDRR-WRQRQ^+Myogs;IUWA"},"Primary":{"369d87eae92ca1dd8d17415509f4d7a0":"dNGu^H%L~n_3A5?I$^t6%PWtRhRi9HXAtQkCt8t7ogM{"},"Logo":{"344bbb4af9f6967b9235fb2f679b6fc2":"O3C6oDE3%Koe?Yj[^$~m--%1oe%KayWC4q-.%Kxst6RkRk"}},"LocationType":"FileSystem"}} 2023-11-12T12:59:26.288Z [info][Jellyfin Sync]: Full Scan Complete 2023-11-12T12:59:28.554Z [warn][GitHub API]: Failed to retrieve GitHub releases. This may be an issue on GitHub's end. Overseerr can't check if it's on the latest version. {"errorMessage":"Request failed with status code 503"} 2023-11-12T12:59:42.646Z [debug][API]: Something went wrong retrieving backdrops {"errorMessage":"[TMDB] Failed to fetch all trending: Request failed with status code 400"} 2023-11-12T12:59:44.966Z [warn][GitHub API]: Failed to retrieve GitHub releases. This may be an issue on GitHub's end. Overseerr can't check if it's on the latest version. {"errorMessage":"Request failed with status code 503"} 2023-11-12T13:00:00.015Z [debug][Jobs]: Starting scheduled job: Download Sync 2023-11-12T13:00:00.025Z [info][Jobs]: Starting scheduled job: Jellyfin Recently Added Sync 2023-11-12T13:00:00.025Z [info][Jellyfin Sync]: Jellyfin Sync Starting {"sessionId":"26b48c18-9e30-42b8-8a89-9d33bf0de178"} 2023-11-12T13:00:00.072Z [info][Jellyfin Sync]: Beginning to process recently added for library: 节目 2023-11-12T13:00:00.086Z [debug][Jellyfin Sync]: failed show: [BDMV][CODE GEASS] 2023-11-12T13:00:04.087Z [info][Jellyfin Sync]: Recently Added Scan Complete 2023-11-12T13:00:09.738Z [warn][GitHub API]: Failed to retrieve GitHub releases. This may be an issue on GitHub's end. Overseerr can't check if it's on the latest version. {"errorMessage":"Request failed with status code 503"} 2023-11-12T13:00:14.932Z [warn][GitHub API]: Failed to retrieve GitHub releases. This may be an issue on GitHub's end. Overseerr can't check if it's on the latest version. {"errorMessage":"Request failed with status code 503"} 2023-11-12T13:00:26.139Z [warn][GitHub API]: Failed to retrieve GitHub releases. This may be an issue on GitHub's end. Overseerr can't check if it's on the latest version. {"errorMessage":"Request failed with status code 503"} 2023-11-12T13:00:50.068Z [warn][GitHub API]: Failed to retrieve GitHub releases. This may be an issue on GitHub's end. Overseerr can't check if it's on the latest version. {"errorMessage":"Request failed with status code 503"} 2023-11-12T13:00:50.127Z [debug][API]: Something went wrong retrieving popular movies {"errorMessage":"[TMDB] Failed to fetch discover movies: Request failed with status code 400"} 2023-11-12T13:00:50.129Z [debug][API]: Something went wrong retrieving trending items {"errorMessage":"[TMDB] Failed to fetch all trending: Request failed with status code 400"} 2023-11-12T13:00:50.406Z [debug][API]: Something went wrong retrieving popular movies {"errorMessage":"[TMDB] Failed to fetch discover movies: Request failed with status code 400"} 2023-11-12T13:00:50.409Z [debug][API]: Something went wrong retrieving popular series {"errorMessage":"[TMDB] Failed to fetch discover TV: Request failed with status code 400"} 2023-11-12T13:00:50.470Z [debug][API]: Something went wrong retrieving the movie genre slider {"errorMessage":"[TMDB] Failed to fetch movie genres: Request failed with status code 400"} 2023-11-12T13:00:50.776Z [debug][API]: Something went wrong retrieving the series genre slider {"errorMessage":"[TMDB] Failed to fetch TV genres: Request failed with status code 400"} 2023-11-12T13:00:51.939Z [debug][API]: Something went wrong retrieving popular series {"errorMessage":"[TMDB] Failed to fetch discover TV: Request failed with status code 400"}

Fallenbagel commented 11 months ago

@Geeksun2018 you have to use HTTP_PROXY etc. All capitalised

Geeksun2018 commented 11 months ago

@Geeksun2018 you have to use HTTP_PROXY etc. All capitalised

I reset the proxy in uppercase, and the page still displays a status code of 500. I just tried to shut down all agents, and the request response will be very slow, but in the end, the 500 status code will still be displayed. I really don't know where the reason is.

Fallenbagel commented 11 months ago

@Geeksun2018 you have to use HTTP_PROXY etc. All capitalised

I reset the proxy in uppercase, and the page still displays a status code of 500. I just tried to shut down all agents, and the request response will be very slow, but in the end, the 500 status code will still be displayed. I really don't know where the reason is.

Can you send me full docker-compose again.

It might be that the container can't reach the proxy host. This happens sometimes due to weird ubuntu/debian based distros having weird firewall issues. Would it be possible to hop onto discord and ill help you fix it?

Geeksun2018 commented 11 months ago

@Geeksun2018你必须使用HTTP_PROXYetc。全部大写

我把代理重置为大写,页面仍然显示500状态码。我刚刚尝试关闭所有代理,请求响应会很慢,但最终还是会显示500状态码。我实在不知道原因在哪里。

你能再次向我发送完整的 docker-compose 吗?

容器可能无法到达代理主机。有时会发生这种情况,因为奇怪的基于 ubuntu/debian 的发行版有奇怪的防火墙问题。是否有可能跳到不和谐的地方并帮助你解决它?

image This is my latest docker-compose. yml file. In a few days, I will try setting up a proxy directly on the router, which may be effective.

Fallenbagel commented 11 months ago

@Geeksun2018 it might be the container can't reach. For better easier troubleshooting hop on discord and ill help you. That's where we do the support.

Router thing might work better yeah because that's what I do too.

Geeksun2018 commented 11 months ago

@Geeksun2018 it might be the container can't reach. For better easier troubleshooting hop on discord and ill help you. That's where we do the support.

Router thing might work better yeah because that's what I do too.

Thank you very much. I will try to seek help on Discord.

Geeksun2018 commented 11 months ago

jellyseerr: image: fallenbagel/jellyseerr:latest container_name: jellyseerr hostname: jellyseer network_mode: bridge

When I set the proxy server, I can't open the web,Prompt internal server error When I cancel the agent, everything returns to normal image image Please note that there should be no quotation marks after HTTP_PROXY and HTTPS_PROXY in your yaml. However, after configuring according to @Fallenbagel's format, I encountered a 500 Internal Server Error on all of my pages.

I have solved this problem. The problem lies in my agent. I used to use V2ray, but now I have changed it to clash and it's no problem.