• 0 Posts
  • 58 Comments
Joined 1 year ago
cake
Cake day: June 10th, 2023

help-circle


  • That would be awesome, currently it’s 500GB for their cheaper option which starts at 23/year. I didn’t find an option to increase the bandwidth before completing the order. Also it needs to be deployed in NY (which would be possibly slow for me in Europe). Finally their isos are somewhat old, the latest Ubuntu they have is 20.04 (which has an EoL next year).

    All that being said, 23/year is very cheap for a VPS, and for people in the US that use less than 500GB/month that’s the best deal I’ve ever seen.








  • Not the user you’ve asked but I’m using Silverbullet and have been loving it, it ticks every box of what I was looking for:

    • Self hosted
    • Stores files in plain markdown text format
    • You can edit those files externally and Silverbullet picks up the changes
    • Allows customization and expansion easily
    • Provides queries that allow you to extend markdown to pull data from other files
    • These use an SQLite db to get these things to work fast, but if you delete them they get regenerated
    • Can be easily synchronized with multiple nodes by using synching to sync the markdown files

  • just making a docker compose and maybe having ansible deploy that?

    that’s what I do, why ansible? Because it makes it easier to deploy the same service in different servers with slightly different configurations, for example when migrating from one server to another. Also it helps with having something I can easily backup (e.g. git repo) that can redo my server(s) if needed.

    That being said I’m still setting everything up with ansible.


  • Where do you want to sync the phones to? I assume you have a server where you want to keep these, otherwise my_folder is just your phone’s local storage.

    With that in mind what you described is a very straightforward synching configuration. You install it on the server, give it access to the three folders, install it on both phones, and configure it to sync:

    • Phone1 local_folder to Server my_folder
    • Phone1 shared_folder to Server shared_rolder
    • Phone2 local_folder to Server wife_folder
    • Phone2 shared_folder to Server shared_rolder

    Don’t understand why you think you need users for that.


  • I have been setting it up on my home, still not done but I can already see some benefits from it, e.g. I’m about to build a new server and migrate a lot of stuff to it, with ansible it will be very easy to just move some configs around and setup the server in no time at all. It also is encouraging me to keep a standard on how I do things which is great, and after setting up some initial things now adding new services is quite straightforward.

    Overall I think there are a lot of positives about it, especially if you have multiple machines to manage. But even for a single one the fact that you can recreate everything from scratch in just one command is quite awesome considering the amount of times I’ve redone my server from 0 for different reasons over the past years.







  • If the docker update doesn’t update things you might not be using docker at all. Docker is like having a VM that you destroy after every run, so it’s not that it updates the version, it is as if you were spinning up a new machine with the new version, a machine running the new version can’t be running the old version by definition, unless you did something like telling that machine to overwrite the installation folder with a local one, e.g. by having something like - /var/www/nextcloud:/var/www/nextcloud (or whatever the path is where you have next cloud installed locally) in your volumes for the docker, which would be akin to buying a new PC because your GPU is old, immediately swapping out the new GPU for the old one, and wondering why the new GPU is so slow.