Post AFwnAKzZ8e3pDfEqMS by Mixtape@mstdn.social
 (DIR) More posts by Mixtape@mstdn.social
 (DIR) Post #AFwmPEXFKKOXaFWzp2 by Mixtape@mstdn.social
       2022-01-29T22:58:57Z
       
       0 likes, 0 repeats
       
       @stux any ideas what i could do with some VPS or servers? More likely VPS thoughDNS? VPN? Nextcloud? Searx?Webhosting?
       
 (DIR) Post #AFwmPFIOV26nwTaeJM by stux@mstdn.social
       2022-01-29T22:59:49Z
       
       0 likes, 0 repeats
       
       @Mixtape Haha how about do it all? :blobcatgiggle:​The most easy way would be Yunohost for example!
       
 (DIR) Post #AFwmitQfVaRRuqpSJE by Mixtape@mstdn.social
       2022-01-29T23:03:22Z
       
       0 likes, 0 repeats
       
       @stux U love Yunohost dont you?
       
 (DIR) Post #AFwmnmqhOuIixKL1Rw by stux@mstdn.social
       2022-01-29T23:04:15Z
       
       0 likes, 0 repeats
       
       @Mixtape Mehh! :blobcatgiggle:​ I love standalone's much more! Only have one Yuno server with most little side-services for ease! All big ones are standalone ofc!
       
 (DIR) Post #AFwn2FPlzUkDbZdgW0 by stux@mstdn.social
       2022-01-29T23:06:51Z
       
       0 likes, 0 repeats
       
       @Mixtape White is Yuno, rest is manual
       
 (DIR) Post #AFwnAKzZ8e3pDfEqMS by Mixtape@mstdn.social
       2022-01-29T23:08:21Z
       
       0 likes, 0 repeats
       
       @stux Well id like to learn Linux actually a bit more so those automated tools wouldnt really do me much but theyre still nice to have
       
 (DIR) Post #AFwoQbqqK7eQ5xTu1w by Suiseiseki@cum.desupost.soy
       2022-01-29T23:22:35.276337Z
       
       0 likes, 0 repeats
       
       @Mixtape @stux If you want the learn about the kernel, Linux, here's the source; https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/On GNU/Linux, bind is excellent for DNS and nginx is excellent for websites.For Linux, wireguard is an excellent VPN.I would recommend against nextcloud, as the image links is provides by default need JavaScript just to see the image - here's my nginx image/video/file hosting script:#!/bin/bashdest="suiseiseki@suiseiseki:/var/www/localhost/files/"url="https://suiseiseki.com/files/"#need at least 2 args[ "$#" -gt 0 ] || exit 2for upload ; dorsync -- "$upload" "$dest" || continueprintf '%s%s\n' "$url" "${upload##*/}" | tee >(xclip -i -selection clipboard)done