• Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below
  • Forum
  • Website
  • GitHub
  • Status
  • Translation
  • Features
  • Team
  • Rules
  • Help
  • Feeds
User Links
  • Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below

    Useful Links Forum Website GitHub Status Translation Features Team Rules Help Feeds
    Jellyfin Forum Development Plugin Development JellySearch

     
    • 1 Vote(s) - 5 Average

    JellySearch

    A fast full-text search proxy for Jellyfin
    Topomov
    Offline

    Junior Member

    Posts: 33
    Threads: 2
    Joined: 2023 Jul
    Reputation: 1
    #9
    2024-08-21, 06:45 PM
    (2024-08-21, 08:06 AM)domi Wrote: Is it possible to add custom nginx config files on Synology?

    While not possible to add the rules in docker-compose, I can write a nginx config which separates the requests between Jellyfin and JellySearch.

    It should be possible! Althought not documented. I'm not very comfortable with it but I ended up with the following:

    Code:
    server {
        location / {
            if ($request_uri ~* "^/Genres") {
                return 403;
            }

            if ($arg_searchTerm ~* ".+") {
                proxy_pass http://127.0.0.1:5500;
                break;
            }

            if ($arg_SearchTerm ~* ".+") {
                proxy_pass http://127.0.0.1:5500;
                break;
            }

            return 404;
        }
    }

    Here is the docker config that I used. As you can see; I added ports to be able to access the Meilisearch interface; which worked great.

    Code:
    version: '3.5'
    services:
      jellyfin:
        image: jellyfin/jellyfin
        container_name: jellyfin
        network_mode: 'host'
        volumes:
    #my volumes
        restart: 'unless-stopped'

      jellysearch:
        image: domistyle/jellysearch
        restart: unless-stopped
        volumes:
          - myPathToConfig:/config:ro
        ports:
          - "5500:5000"
        environment:
          MEILI_URL: "http://192.168.1.22:7700"
          MEILI_MASTER_KEY: "1234"
          INDEX_CRON: "0 0 0/2 ? * * *"
      meilisearch:
        image: getmeili/meilisearch:v1.9
        restart: unless-stopped
        ports:
          - "7700:7700"
        volumes:
          - myPathToMeilisearch:/meili_data
        environment:
          MEILI_MASTER_KEY: "1234"

    The rest of my message is just my attempts are getting it to work. You can probably ignore it.

    Do you know if it's normal that the following request: http://192.168.1.22:5500/Users/SOMEID/It...ypes=Movie

    Returns the following? {"Items": [], "TotalRecordCount": 0, "StartIndex": 0}

    I tried to take the request sent to Jellyfin and send it to Jellysearch. But I guess I am missing some header authentification (according to the Jellysearch logs)


    Nonetheless, wherever we get it to work or not. Thank you for your work! It's been really fun to try and it's great to see people involved in the project.
    « Next Oldest | Next Newest »

    Users browsing this thread: 1 Guest(s)


    Messages In This Thread
    JellySearch - by keklol - 2024-08-16, 11:12 AM
    RE: JellySearch - by jennystreaming - 2024-08-18, 06:34 PM
    RE: JellySearch - by jennystreaming - 2024-08-18, 06:50 PM
    RE: JellySearch - by TheDMV - 2024-08-28, 10:46 AM
    RE: JellySearch - by Topomov - 2024-08-20, 09:54 AM
    RE: JellySearch - by thornbill - 2024-08-20, 12:31 PM
    RE: JellySearch - by Topomov - 2024-08-20, 05:54 PM
    RE: JellySearch - by xiNe - 2024-08-20, 07:18 PM
    RE: JellySearch - by twilco - 2025-01-08, 02:52 AM
    RE: JellySearch - by domi - 2024-08-21, 08:06 AM
    RE: JellySearch - by Topomov - 2024-08-21, 06:45 PM
    RE: JellySearch - by domi - 2024-08-22, 09:36 PM
    RE: JellySearch - by Nerokor - 2024-08-23, 12:54 AM
    RE: JellySearch - by Topomov - 2024-08-23, 02:55 PM
    RE: JellySearch - by vodka - 2024-08-23, 03:50 PM
    RE: JellySearch - by domi - 2024-08-24, 10:39 AM
    RE: JellySearch - by Nerokor - 2024-08-28, 12:49 AM
    RE: JellySearch - by keklol - 2024-08-27, 08:46 AM
    RE: JellySearch - by Topomov - 2024-08-27, 07:25 PM
    RE: JellySearch - by jennystreaming - 2024-10-06, 03:03 PM
    RE: JellySearch - by domi - 2024-10-07, 07:12 AM
    RE: JellySearch - by jennystreaming - 2024-10-07, 07:13 AM
    RE: JellySearch - by domi - 2024-08-28, 08:34 AM
    RE: JellySearch - by hov - 2024-09-17, 06:16 AM
    RE: JellySearch - by Zedniac - 2024-09-18, 05:43 AM
    RE: JellySearch - by Zedniac - 2024-09-18, 03:21 PM
    RE: JellySearch - by Hectik - 2024-09-30, 11:12 PM
    RE: JellySearch - by Hectik - 2024-10-02, 11:28 PM
    RE: JellySearch - by TheDreadPirate - 2024-10-03, 12:25 AM
    RE: JellySearch - by Hectik - 2024-10-05, 08:30 PM
    RE: JellySearch - by dontcryforme - 2024-10-03, 12:54 PM
    RE: JellySearch - by Hectik - 2024-10-05, 09:32 PM
    RE: JellySearch - by domi - 2024-10-06, 09:01 AM
    RE: JellySearch - by Hectik - 2024-10-06, 11:30 PM
    RE: JellySearch - by WheelFire - 2024-10-11, 02:02 PM
    RE: JellySearch - by domi - 2024-10-12, 08:47 AM
    RE: JellySearch - by WheelFire - 2024-10-12, 09:01 AM
    RE: JellySearch - by vbs - 2024-10-12, 11:35 AM
    RE: JellySearch - by need4swede - 2024-10-15, 04:48 PM
    RE: JellySearch - by Druidblack - 2024-11-17, 11:08 AM
    RE: JellySearch - by keklol - 2024-12-05, 03:49 AM
    RE: JellySearch - by kandykarter - 2024-12-11, 05:54 PM
    RE: JellySearch - by Druidblack - 2024-11-16, 06:44 PM
    RE: JellySearch - by JellyHunter - 2025-01-08, 06:31 PM
    RE: JellySearch - by thymon - 2025-01-13, 03:43 PM
    RE: JellySearch - by thymon - 2025-01-24, 08:34 AM
    RE: JellySearch - by domi - 2025-01-29, 09:51 AM
    RE: JellySearch - by nothingveryobvious - 2025-01-30, 05:06 AM
    RE: JellySearch - by kandykarter - 2025-01-31, 07:10 PM
    RE: JellySearch - by souvik29766 - 2025-04-01, 12:41 PM
    RE: JellySearch - by TheDreadPirate - 2025-04-01, 01:29 PM
    RE: JellySearch - by kandykarter - 2025-04-01, 05:31 PM
    RE: JellySearch - by Feliz Lombriz - 2025-06-24, 03:57 AM
    RE: JellySearch - by keesfluitman_76238 - 2025-05-19, 03:35 PM

    • View a Printable Version
    • Subscribe to this thread
    Forum Jump:

    Home · Team · Help · Contact
    © Designed by D&D - Powered by MyBB
    L


    Jellyfin

    The Free Software Media System

    Linear Mode
    Threaded Mode