• 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 Support General Questions Where is the config.json file on Windows?

    Pages (3): 1 2 3 Next »

     
    • 0 Vote(s) - 0 Average

    Where is the config.json file on Windows?

    4r5hw45twh
    Offline

    Member

    Posts: 132
    Threads: 31
    Joined: 2024 Mar
    Reputation: 0
    #1
    2024-10-06, 05:37 PM (This post was last modified: 2024-10-06, 05:40 PM by 4r5hw45twh. Edited 2 times in total.)
    Can't seem to find it. I checked ProgramData & Program Files folders. I would like to simply add a link at the top/bottom of my JF server that people can click/tap on. Not using Docker with JF, by the way.
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #2
    2024-10-06, 06:05 PM
    C:\Program Files\Jellyfin\Server\jellyfin-web\config.json
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    4r5hw45twh
    Offline

    Member

    Posts: 132
    Threads: 31
    Joined: 2024 Mar
    Reputation: 0
    #3
    2024-10-06, 06:50 PM
    (2024-10-06, 06:05 PM)TheDreadPirate Wrote: C:\Program Files\Jellyfin\Server\jellyfin-web\config.json

    Oh nice, thank you. Overlooked it. Follow-up question: Now, how do I add an actual message with a clickable URL on the server at the top or bottom?

    Example: "Click here!" with "here" hyperlinked.
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #4
    2024-10-06, 08:31 PM
    https://jellyfin.org/docs/general/client...menu-links
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    4r5hw45twh
    Offline

    Member

    Posts: 132
    Threads: 31
    Joined: 2024 Mar
    Reputation: 0
    #5
    2024-10-07, 11:34 AM
    (2024-10-06, 08:31 PM)TheDreadPirate Wrote: https://jellyfin.org/docs/general/client...menu-links

    Code:
    "menuLinks": [
        {
            "name": "Custom Link",
            "url": "https://jellyfin.org"
        },
        {
            "name": "Custom Link w. Custom Icon",
            "icon": "attach_money",
            "url": "https://demo.jellyfin.org/stable"
        }
    ]

    Ah, ok. So is that 2 name and URL's for one link or why's there 2 entries here?
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #6
    2024-10-07, 12:39 PM
    They provided two different examples. The first does not have an icon, the second one does.
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    4r5hw45twh
    Offline

    Member

    Posts: 132
    Threads: 31
    Joined: 2024 Mar
    Reputation: 0
    #7
    2024-10-07, 04:22 PM
    (2024-10-07, 12:39 PM)TheDreadPirate Wrote: They provided two different examples.  The first does not have an icon, the second one does.

    So, it appears that on Desktop and on the browser on a phone, the custom link shows up, but not on the JF app itself. Any idea why?
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #8
    2024-10-07, 04:30 PM
    Caching? Clear the app cache?
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    4r5hw45twh
    Offline

    Member

    Posts: 132
    Threads: 31
    Joined: 2024 Mar
    Reputation: 0
    #9
    2025-01-20, 10:23 PM (This post was last modified: 2025-01-20, 11:18 PM by 4r5hw45twh. Edited 4 times in total.)
    (2024-10-07, 04:30 PM)TheDreadPirate Wrote: Caching?  Clear the app cache?

    Hi. Where would this be on Ubuntu? I checked my cache/config folders that are my Docker volumes, but don't see a config.json there.
    Nor do I have a /jellyfin/ folder at my /usr/share area.

    https://jellyfin.org/docs/general/client...menu-links

    Since I don't see it anywhere, I made a blank file called "web-config.json" in the path below to bind it to Docker's config.json file.
    I added the below to my docker-compose.yml file under the "volumes:" area:

    Code:
    /mypath/to/config/web-config.json:/jellyfin/jellyfin-web/config.json

    I then later found the default config.json at https://github.com/jellyfin/jellyfin-web...onfig.json and copy-and-pasted that into my web-config.json file.
    I only wanted to add an extra menu link, so I added one with:
    Code:
    "menuLinks": [
        {
            "name": "menu link",
            "icon": "icon",
            "url": "www.com"
        }
    ],

    After that, I restarted JF, re-ran "docker compose up -d" to be safe, opened JF in a private browser, but I don't see any new menu link showing.
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #10
    2025-01-21, 12:38 AM
    Check that the user running the container can read the file. Try clearing your browser cache. Also try rebuilding the container.
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    Pages (3): 1 2 3 Next »

    « Next Oldest | Next Newest »

    Users browsing this thread: 1 Guest(s)


    • 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