Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)RA
Posts
32
Comments
863
Joined
2 yr. ago

  • Its that simple to use different IPs just with DNS server:

    DNS server

     
        
    192.xxx.x.47 -> plex.yourdomain.xyz
    192.xxx.x.53 -> snapdrop.yourdomain.xyz
    
      

    But dont you have your services on the same IP and different ports? If thats the case you will also need reverse proxy like nginx. So DNS server will point your domain name (you can just make a name for local use) to your server IP. Then reverse proxy can point each name to a specific IP and port.

    Reverse proxy

     
        
    192.xxx.x.47:32400 -> plex.yourdomain.xyz
    192.xxx.x.47:8080 -> snapdrop.yourdomain.xyz
    
      
  • I was testing around 5 different PSUs (500-750W silver/gold) on the same machine and I was reading 20 - 35W from the wall. So yeah I think PSU plays a big role. They are most efficient at around half of the rated load and we are using them at <10%.

  • Hard links are default. Files look like duplicates but they dont take double amount of storage. To empty storage you have to delete both files.

    As someone elese already said, you should use single volume for both radarr and qbittorrent.

    This is from wiki.servarr:

     
        
    data
    ├── torrents
    │  ├── movies
    │  ├── music
    |  ├── books
    │  └── tv
    ├── usenet
    │  ├── movies
    │  ├── music
    │  ├── books
    │  └── tv
    └── media
        ├── movies
        ├── music
        ├── books
        └── tv
    
      

    Following this you should have

     
        
    volumes:
      - /path_to_qbit_config:/config
      - /path_to_data:/data
    
      
     
        
    volumes:
      - /path_to_radarr_config:/config
      - /path_to_data:/data
    
      
  • My skills are not impressive at all, but my NC instance is rock solid. Its been running on rpi4 for more than 6 months and then moved to Celeron server a year ago. I have disabled most plugins since I dont use them and its been quite fast. Only 2 users though. Linux/Windows/Android clients are auto updated, but I manually update the server (docker). Hope Im not gonna jinx it lol

  • If you import it as external library, Immich will not be able to modify or delete any of the files, but you will see the files just like you see ones uploaded using immich. It is up to you to decide what is better

  • When I say more squish, I mean get your nozzle closer to the print bed or increase extrusion rate. Gaps between print lines are visible and they shouldnt be.

    Sorry if I was unclear, I was even surprised I got downvote LOL

  • I guess you can add attributes to door sensors. Attribute "visible" with if statement that says NO if default open doors are opened or if default closed doors are closed. Then list all door sensors and exclude these with attribute NO.

    I never tried this, I dont even have door sensor, but that came to my mind. There might be better solution