Hello friends, I am considering self hosting on my desktop computer, which already has gentoo Linux installed. But my concern is that my regular desktop use could compromise the security of self hosted applications, which tend to handle private user data.

What can I do to secure myself against this threat?

For example, browsers on their own are a security nightmare. You are running arbitrary remote scripts, and there’s no telling the extent of damage they do (most websites out there doing extensive tracking).

What can I do to secure my self hosted applications while running them on the same machine? Is there something I can do to somehow isolate browsers and other sketchy applications from the damage they could possibly do?

  • AceofSpades
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 year ago

    You could run your self hosted services in a VM. The rest of your system can’t access that so it’s about as secure as it gets. That’s kind of what VMs are really good at. The downside is that are pretty much running another operating system inside your operating system so you need the RAM and CPU to support it. If you are running Gnome on that Gentoo box then look at Gnome Boxes.

  • Perhyte@lemmy.world
    link
    fedilink
    English
    arrow-up
    1
    arrow-down
    1
    ·
    edit-2
    1 year ago

    Maybe just don’t run your services under your regular user account?

    Create one or more new user accounts and run them that way. Make sure not to give your regular user account any access to the data in the new accounts.

    That doesn’t stop all attacks: side-channel attacks (Spectre?) can still happen, and your machine can for example still run out of memory and break your services that way, but it’s a solid start.