JellySearch - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Development (https://forum.jellyfin.org/f-development) +--- Forum: Plugin Development (https://forum.jellyfin.org/f-plugin-development) +--- Thread: JellySearch (/t-jellysearch) |
RE: JellySearch - Nerokor - 2024-08-23 Quote:location ~* ^(?!/Genres)(.*) { I'm using Nginx Proxy Manager. When I put the above configuration (edited with my jellysearch IP:port) into Advanced > Custom Nginx Configuration, I get a "Welcome to OpenResty!" page. RE: JellySearch - Topomov - 2024-08-23 (2024-08-22, 09:36 PM)domi Wrote: Try adding the following location block above your regular Jellyfin location block: The Jellyfin Nginx part is handled by Synology; I have little control over it I'll try and see what I can do! RE: JellySearch - vodka - 2024-08-23 (2024-08-22, 09:36 PM)domi Wrote: Try adding the following location block above your regular Jellyfin location block: I tried this (with the correct proxy pass url ofc) and it seems to now redirect everything that goes to my jf domain straight to a default nginx page. Commenting it out restores service as normal. Though what I did instead was change my default location block to include the if part from here, since I don't care about the Genres queries going though (according to the dev they get passed through anyway) I changed it from this: Code: location / { Code: location / { RE: JellySearch - domi - 2024-08-24 (2024-08-23, 12:54 AM)Nerokor Wrote:Quote:location ~* ^(?!/Genres)(.*) { I updated the documentation in the git repository for nginx and Nginx Proxy Manager: https://gitlab.com/DomiStyle/jellysearch#nginx Should hopefully work that way in both instances. (2024-08-23, 02:55 PM)Topomov Wrote: The Jellyfin Nginx part is handled by Synology; I have little control over it I don't own any Synology device so you're on your own there but I updated the documentation for nginx and Nginx Proxy Manager, so if you can get access to your nginx configs you can go from there. (2024-08-23, 03:50 PM)vodka Wrote: And it works great. Thanks, added it to the documentation. RE: JellySearch - keklol - 2024-08-27 I wish we can get something like this native one day! RE: JellySearch - Topomov - 2024-08-27 It works so beautiful well! Thank you for everything!! As for Synology users; I wrote the following script that should be put in the task scheduler (have it run at boot as root) Code: # Define the search term for grep and the words for modification RE: JellySearch - Nerokor - 2024-08-28 (2024-08-24, 10:39 AM)domi Wrote: [quote="Nerokor" pid='33888' dateline='1724374498'] I updated the documentation in the git repository for nginx and Nginx Proxy Manager: https://gitlab.com/DomiStyle/jellysearch#nginx Should hopefully work that way in both instances. Thank you for making this. Your setup instructions worked great for me. One issue that came up is a friend was searching for something on Swiftfin and it would crash I assume it's related to the change to Jellysearch. Any plans to support Swiftfin? RE: JellySearch - domi - 2024-08-28 (2024-08-28, 12:49 AM)Nerokor Wrote: Thank you for making this. Your setup instructions worked great for me. One issue that came up is a friend was searching for something on Swiftfin and it would crash I assume it's related to the change to Jellysearch. Any plans to support Swiftfin? Swiftfin should work in the latest version. RE: JellySearch - TheDMV - 2024-08-28 (2024-08-18, 06:50 PM)jennystreaming Wrote: This seem to be for Jellyfin? https://github.com/fredrikburmester/marlin-search Marlin search is only for clients that support it, which at this time, is only the author's client, Streamyfin. RE: JellySearch - hov - 2024-09-17 Configuration was quite complicated. Unsure how to get it to work with custom items to prevent crawlers and stuff in NPM. Documentation on dev's gitlab could improve |