• 2 Posts
  • 19 Comments
Joined 10 months ago
cake
Cake day: December 28th, 2023

help-circle




  • Not sure if this is what happend, but there is a sync option in samba where you can sync your samba user password with login user password.

    However this needs explicitly be stated in the samba.conf and needs some further configuration. It could be possible that the installation fuckedup something with passwd.

    Just guessing here, I played a bit arround with samba and password syncing.



  • XFCE4 ! Stable, simple and EndeavourOS’ design is top notch !

    However there are some glitches from time to time. Nothing to serious but when I use Lutris + Wine my desktop bar does some wired shit.

    Also when coming back from sleep I have to “pkill xfce4-session”. Though I’m not totally sure it’s an xfce issue…this could also be Nvidia or X11 related… Didn’t dived to deep.






  • I’ve subscribed to YT Premium today.

    If you’re on Android there’s InnerTune. It’s basically YouTube music but for free ! Just to bad you can’t directly access downloaded files to export them elsewhere. (Yeah that’s practically piracy and illegal)

    I like navidrome + Tempo as self-hosted solution. Works well without any issues. However, I read about horror stories people losing all their media or fucking up their media library ?

    Also, that’s a huge song library (20.000?)… Not sure this can be easily handled over to a self-hosted solution? But first you need to organize your songs






  • N0x0n@lemmy.mltoLinux@lemmy.mlThis is why I love linux
    link
    fedilink
    arrow-up
    0
    ·
    edit-2
    15 days ago

    I had a similar experience with a “wow the Linux community is beautiful” feeling after booting into Debian on an old rockchip CPU TV box !

    Have a look at the armbian community. Those guys are on another level 😁.


    Edit

    To my surprise, I even discovered that you can boot Armbian on these inexpensive boxes and use them as a lightweight desktop

    Oupsi ! It’s late here so I didn’t read till the end ! Sorry about that 😅



  • Hi there ! Sorry my English is not that good, but I’m doing the best I can !

    Actually, I do not have a VPS. I use an old spare laptop as server which handles everything.

    I have Wireguard barebone installed with a a second external wireguard interface and some iptables to send all traffic to ProtonVPN.

    All my containers,on the same laptop, are directly reachable via this configuration and HTTPS is handle by Treafik with my self-signed local certificates (root CA with intermediate CA).

    Eg: From my mobile over WiFi or 4G I can access all my containers where ever I’m. My endpoint in my Wireguard’s confirguration (on my phone) being my home’s public IP.

    I hope I answered your question? If not I’m willing to give you a diagram of my setup, this will probably clear up the confusion/question? And will probably be way more explicit than my broken English 😄.


  • Probably what you’re looking for is the following setup:

    docker <-> services <-> reverse proxy <-> VPN <-> Internet

    1. Your next step is to chose a reverse proxy to handle your requests and serve your services on port 80 and port 443. There are several choice and you have to somehow stick with it, because each reverse proxy has it’s up and downsides and learning curve:
    • Treafik (that’s the one I use and is specifically made for containers)
    • Caddy (Never used it but heard only good things about it)
    • Nginx (this one is a beast to tame, however I heard it’s easier to setup with nginx proxy manager)

    Those are the 3 big players I’m aware of.

    1. You reverse proxy ready and functional you need something to access them outside your LAN. There are also several ways to achieve the same goal. The one I use and are happy with is to configure Wireguard on your server and only open the port needed to connect to it.

    This is also a big part and probably this is the route of a tinkerer and have lot of personal time to spare… There are easier AIO routes that will probably save you time and energy. (Others will point you to the right direction)

    1. Bonus tip

    You will rapidly understand the necessity of DNS. Reaching out to your services by IP:PORT will annoy you over time, even if you save them as bookmarks. Also if you don’t assign a static IP to your containers they will change every time you restart them or reboot your server. Not very practical !!

    Here you have 2 choices:

    • personal mini certificate authority (totally free and personal local domains but harder to setup)
    • cheap domain name with automatic certificate generation.

    I personally chose the tinkerer route and learning process. But I have time to spare and while I prefer this route… It’s very time consuming and involves a lot of web crawling and books reading.

    If you are interested I can recommend you a good ebook on how to setup your own mini-CA :).


    Hope it helps, you are halfway through !