foster
@foster@lemmy.fosterhangdaan.com
Just a random person who likes building software and configuring Linux.
Here are other places where you can find me:
- Comment on This technology will change video games forever... 3 weeks ago:
Don’t forget: entrepreneur, playboy, philanthropist.
- Comment on What websites still feel like the old internet? 4 weeks ago:
From a time when websites used
<table>
orposition: absolute
to place elements on the screen. That website is just one big table. - Comment on What websites still feel like the old internet? 4 weeks ago:
Pretty much all of the FSF and GNU websites.
- Comment on Anyone use Retropie? Two buttons won't map. 1 month ago:
I’m running RetroPie on a Debian laptop and I’m able to map all the buttons of my 8BitDo Pro 2 controller; no issues at all. I was also able to connect and configure an Xbox 360 controller just fine.
You might want to try getting help on the RetroPie forums if you don’t get any luck here.
- Comment on Do you selfhost your own blog/website? 1 month ago:
- Comment on Is it possible to run a reverse proxy only on a specific service or port? 1 month ago:
First of all, doesn’t Navidrome have authentication? So, I don’t see why exposing it to the public is a problem.
Second, some reverse proxies support basic auth. This way, you can have authentication at the proxy level and is useful of the service does not support it. Here as an example snippet for Caddy:
example.com { basic_auth { # Username "Bob", password "hiccup" Bob $2a$14$Zkx19XLiW6VYouLHR5NmfOFU0z2GTNmpkT/5qqR7hx4IjWJPDhjvG } reverse_proxy myservice:8000 }
You’ll have to look up the docs for other reverse proxies.