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/)T
Posts
0
Comments
27
Joined
3 yr. ago

  • If I had to guess, the container station might be giving the docker container a new network/ip address, one that the NAS is not using so that port 443 works and doesn't conflict with the NAS. If you start the container station then inspect the container you might see how they do it, but macvlan is typically how you would configure it.

     
        
    services:
      my-lan-service:
        image: nginx:latest
        container_name: lan_container
        # 1. Attach the service to the custom macvlan network
        networks:
          lan_network:
            ipv4_address: 192.168.1.200  # The dedicated LAN IP for this container
        # 2. Ports are exposed directly to the LAN; do NOT use the "ports" block
        restart: unless-stopped
    
    networks:
      lan_network:
        driver: macvlan
        driver_opts:
          parent: eth0                  # Change to your host's physical network interface name
        ipam:
          config:
            - subnet: 192.168.1.0/24    # Matches your physical local network setup
              gateway: 192.168.1.1      # Your physical router IP
    
      
  • I wonder if this is an Nvidia thing. It's been working quite well on my AMD hardware. I played for like 4 hours yesterday and then left the game open for 2 more by accident and it was still stable. I did lower some environment graphics settings to reduce microstutters but otherwise it's running quite well at 60 fps.

  • Check ethtool to make sure your link is actually operating at 2.5gbit with full duplex. You may need to make sure the kernel module for that ethernet nic supports 2.5gbit.

  • When connected to your internal network, what is the results of:

    nslookup sub.domain.tld AGH.IP.Address

    This should respond authoritative with the IP you need to access NPM's VIP IP address. If that is not the case, let us see your AGH configuration for your sub.domain.tld.

    If that does return the correct IP, verify that it responds to https using curl on Linux or windows (replace curl with curl.exe)

    curl -vvvI https://sub.domain.tld/

    If this is not connecting or showing a cert error then there's a misconfiguration on the NPM side. Screenshots of your site configuration for one of the sites would be helpful. The domain name should match sub.domain.tld (not your duckdns) and be bound to the let's encrypt cert.

  • Instead of a default gateway you can configure just your VPN IP address to go to your gateway. You might also need DNS servers depending on your setup.

    Example: ip route add 1.1.1.1/32 via 192.168.1.1 dev eth0

    Note that without a script this may be flaky if you're using DNS to resolve the VPN. It might be better to have a script that resolves the IP(s) of the VPN and then adds routes.

    That being said, your VPN software is usually designed to install routes that have higher priority so that they will get used before the local network. One such way is by adding half-internet routes (0.0.0.0/1 and 128.0.0.0/1) which get preferred over the larger default route. If you run ip route once connected you may see those routes present.

    While I'm not sure if it works in rootless, take a look at binhex/arch-delugevpn project which has scripts to set up a similar network isolation environment.

  • IMO as a developer this is a sane change. There's no telling when the format of the first-party api key will change. They may switch from reference tokens to JWT tokens tomorrow. The validation should be using the token and seeing if it works.

  • Pretty sure it's stock Cinnamon, but I do have extensions installed which could be screwing with things.

  • Right clicking the title bar of a window on Linux Mint, the menu appears but I can't click it until I move the window away from it (the menu doesn't close) and then it becomes responsive. I love Linux.

  • 2>&1 pipes stderr to stdout, which would not affect a binary like file which doesn't parse stdin. You would need something like xargs file which would convert the stdout to command line arguments.

  • Totally agree with that. What I have a problem with is withholding security updates on the latest LTS releases and only releasing them on ESM. That's some scummy BS.

  • I think if you didn't assign a tag on the Release Profile it applies to all series.

  • I have never done RAID over USB, but have done various JBOD setups using SCSI. I think the general idea is that USB having such an easily disconnected connector plus the latency overhead on translating SATA to USB to SATA again means you have a higher chance of corruption. SCSI setups typically have connectors with locking mechanisms to prevent easy disconnection.

    If eSATA is an option it might be better for the performance and it has a latching mechanism to prevent easy disconnection. You can get a 2-port eSATA PCI card for about 50 bucks.

    Oh, and if you have a free PCI port, you could add internal SATA ports to mount the drives internally.

  • I know tailscale prefers being installed on every machine but not all of my machines are even capable of running custom code. I use a single tailscale router that published my internal network to tailscale and if the internet is down everything still works fine internally.

  • With TrueNas you can do it two ways: ISCSI disks that are mounted to the VMs or via NFS. With ISCSI you won't have access to the data from the TrueNas side as the data will be stored as a volume file. With NFS you get the best of both worlds as you'll be able to access the files via other TrueNas services like SMB/SFTP. I have my Jellyfin/Plex running via NFS and have few issues, though I've not tested it with large 4k/8k videos yet. I mostly run 1080p.

  • They're stuck in cat and need a ctrl+c

  • No wildcard support sigh

  • Only if you define it.

    const that = this

  • +1 for Backblaze. They have a convenient backup software too that works great. I backup my parents laptop using it, and use their S3 storage for my NAS backups.