Skip Navigation

Posts
5
Comments
327
Joined
1 yr. ago

  • I would argue and say that it is poor implementation on your developers behalf, Lemmy itself supports it, your client is failing to properly render the image.

    As mentioned previously, Voyager displays the image as intended.

  • from an actual search company that values privacy.

    California company obliged by FVEY? While I appreciate their efforts, American based companies kind of have a history of abandoning their privacy-respecting ways once subpoenaed.

  • Entirely depends on the instance admin and whether or not they keep it maintained and up to date.

  • If you don't trust the platform then you shouldn't be using it. No bandaid like antivirus or firewall can help with that.

    I mean, if you don’t have a firewall on the device itself then your router certainly does, your device requests xyz port open your router will oblige with UPNP unless explicitly denied.

    The on-device firewall is just an extra step before it hits your router’s firewall anyways, I’m sure your devices have made contact with servers behind your back that you know nothing about.

  • Web browsers look for either port :80 or port :443 by default, your reverse proxy sits on those ports, hence why you don’t need to input a port at the end of the domain.

    Get yourself a load balancer like Traefik or SWAG, buy a domain, setup ACME certificates for SSL/TLS and start pointing your load balancer to your services.

  • Name 1 great struggle that humanity suffers from that “Ai” has resolved.

  • The firewall is annoying? I would argue and say the firewall is protecting your computer from connecting to a rouge server, annoying or not it’s better than some douche abusing an exploit in your system.

  • perhaps if you open the Wiki link where the image was taken from, for me it’s animated on Voyager.

  • OpenSnitch is a nice for the desktop environment, deny by default and prompts the user when an application requests a open port, at first the prompts can get a little overwhelming given how many things want to connect to xyz server but eventually lightens up.

  • Lemmy is certainly not impervious to bots, hell scraping Lemmy is arguably easier than Reddit because any Joe can setup a Lemmy instance and federate with others.

  • As a Canadian elbows are at a cool 30° right now, not everything is peaches and cream on the liberal side of the rainbow.

  • Pity and Shame typically go hand an hand, you’ll hear people say “That’s a shame” but you can replace shame with pity “That’s a pity” and achieve the same result.

    However when addressing another person, you won’t hear people say “I shame you” instead you’ll hear “I pity you” to show displeasure or anger to another person.

    Hope this helps!

  • Little late but I doubt Microsoft wants to relive the horrors of JTAG/RGH Xbox 360’s hence the locked down systems.

  • If you manage to get Docker Compose installed on that Mac (I don’t know Dockers limitations with Macs) create a docker-compose.yaml file with the contents of;

     
        
    services:
    
      jellyfin:
    
        image: jellyfin/jellyfin
    
        container_name: jellyfin
    
        # Optional - specify the uid and gid you would like Jellyfin to use instead of root
    
        user: uid:gid
    
        ports:
    
          - 8096:8096/tcp
    
          - 7359:7359/udp
    
        volumes:
    
          - /path/to/config:/config
    
          - /path/to/cache:/cache
    
          - type: bind
    
            source: /path/to/media
    
            target: /media
    
          - type: bind
    
            source: /path/to/media2
    
            target: /media2
    
            read_only: true
    
          # Optional - extra fonts to be used during transcoding with subtitle burn-in
    
          - type: bind
    
            source: /path/to/fonts
    
            target: /usr/local/share/fonts/custom
    
            read_only: true
    
        restart: 'unless-stopped'
    
        # Optional - alternative address used for autodiscovery
    
        environment:
    
          - JELLYFIN_PublishedServerUrl=http://example.com/
    
        # Optional - may be necessary for docker healthcheck to pass if running in host network mode
    
        extra_hosts:
    
          - 'host.docker.internal:host-gateway'
    
      

    Edit the volumes so that the drive you want to use is exposed to the container and then run;

    sudo docker compose up -d

    In a shell while in the folder with the docker-compose.yaml file you just created. If everything works then the server should be running on port :8086 open your browser and make an http:// request to the ip of the server followed by the port.

    Example; http://127.0.0.1:8096/

    Documentation.

    Edit: removed unnecessary \

    Edit 2: I really should have read the post more thoroughly, while my example above works fine for a Jellyfin server (which you apparently already run) it also can be adapted for other services. Read and interpret the documentation as best as you can, that goes for any service.

  • Software rendering is slower than hardware rendering, this is certainly not a Linux exclusive.

    You’re essentially telling it “Hey! I have no graphical processor or that my graphical processor is so underpowered that I need my CPU to do the rendering at an attempt to speed things up.”

    Suggest you sort out your GPU and or GPU drivers because you should not be using software rendering.

  • Every homepage made with Homepage.dev looks the same to me, no matter how much you configure their settings.yaml or services.yaml it all looks the same.

    Surprised you didnt slap a background image on it and blurred it.

  • Selfhosted @lemmy.world

    Any tool to visualize Traefik access logs?

  • Selfhosted @lemmy.world

    How do you configure CSP headers on 20+ applications ?

  • Selfhosted @lemmy.world

    Docker Swarm networking vs Docker Compose

  • Privacy @lemmy.ml

  • Linux @lemmy.ml

    Packages similar to Earlyoom?