• 0 Posts
  • 11 Comments
Joined 1 year ago
cake
Cake day: July 8th, 2023

help-circle


  • their home address, social security number, face, email, phone number, passwords, their emails and texts, etc could be out there for anyone to see soon or may already be

    this part is important and few people talk about this. your data is indeed for faceless companies eyes only, but for now.

    you’d have to blindly trust all big datas’ security practices and that they won’t be leaked any time in the future, either by an inside agent or by a security vulnerability.

    once upon a time we did the same to our online accounts and used the same password over and over, only to find they were stored as plain text waiting to be leaked…


  • not sure if you’re talking about sailing there, but my point against Netflix would be that there are definitely more things to do in life than sitting through hours of passive low effort entertainment. it’s very obvious but I guess people are slowly forgetting about that

    even gaming is better. at least you’re exercising your brain and motor skills

    the banking thing is something else though. but it’s the kind of thing that’s probably done for security anyway, so it’s not that bad and things like that definitely wouldn’t be profitable enough for all this effort Google and others are putting into it 😅



  • arvere@lemmy.mltoMildly Infuriating@lemmy.worldThanks Spez!
    link
    fedilink
    English
    arrow-up
    9
    ·
    edit-2
    1 year ago

    [-] thunderbox666 « 1 point 2 months ago

    Pretty much any subdomain will go to the nginx server and it will only do something if youve configured that subdomain in the config - everything else just gets ignored, or you can setup a catchall to handle all the unconfigured stuff

    so you will need something like this (might not be exact, been a long time since i had to configure NGINX haha)

    server {
    server_name ha.mydomain.duckdns.org;
    location / {
    proxy_pass http://hostnameOrIP1:port1;
    }
    }
    server {
    server_name nextcloud.mydomain.duckdns.org;
    location / {
    proxy_pass http://hostnameOrIP2: port
    }
    }
    

    an easier way would be to use Nginx Proxy Manager which gives you a nice GUI to add and manage all the sites.