More translations
All checks were successful
Trigger build for deploying blog updates / build (push) Successful in 0s
All checks were successful
Trigger build for deploying blog updates / build (push) Successful in 0s
This commit is contained in:
50
original/blog/test.md
Normal file
50
original/blog/test.md
Normal file
@@ -0,0 +1,50 @@
|
||||
---
|
||||
title: First Post
|
||||
description: Testint test testong
|
||||
date: 2026-03-18
|
||||
slug: test
|
||||
---
|
||||
|
||||
# Test
|
||||
This is the **content** of the first post.
|
||||
|
||||
I think it works for now!
|
||||
|
||||
## So...
|
||||
|
||||
Welcome to aranroig.com! I finally build it, it feels like a very important milestone. At the moment I'm able to write simple markdown documents
|
||||
and displaying it as plain html with custom classes and a lot of other things. So, publishing new blog posts will be very easy, its just doing
|
||||
a commit and pushing to master, and all the CI/CD pipeline will take about the rest.
|
||||
|
||||
The architecture of the website is very simple but also a bit complicated.
|
||||
|
||||
First of all, I am tunneling the connexions from a VPS to my homelab, since I am still trapped behind a CG-NAT. All traffic is redirected from
|
||||
the VPS to my home using WireGuard. It is really easy to configure, it was just two different config files.
|
||||
|
||||
At my homelab I have installed a [Proxmox Virtual Environment](https://www.proxmox.com). Proxmox lets you use a computer as a server, where you can create VMs and also LXC containers, which are separate instances of containers but they all share the same kernel of the host machine. Docker is built above LXC containers. These containers are also very efficient, since they share the same kernel. But if one kernel panics, so does the other ones, since they share the same kernel.
|
||||
|
||||
So, the incomming connexions go to a LXC container which has nginx and within a internal network these requests are distributed to different places, such as this website, my personal [gitea server](https://git.aranroig.com), an instance of [Navidrome](https://www.navidrome.org/), and another one of [Immich](https://immich.app/), just to name a few.
|
||||
|
||||
I have also another LXC container that has a gitea worker in it. I have configured my repository so that every push in master it builds a docker image of the frontend and the backend of this website and then publishes them inside the gitea server, and another LXC container where everything is hosted pulls back the images and deploys them. This setup could be even get more crazier but for me this is already enough.
|
||||
|
||||
I have no idea of what I can place here let me put an image
|
||||
|
||||

|
||||
|
||||
Oh yeah of course it works!
|
||||
|
||||
> Identated
|
||||
|
||||
- Some
|
||||
- List
|
||||
- Elements
|
||||
|
||||
Checklists are displayed wrong!
|
||||
|
||||
- [ ] Checklist!
|
||||
- [x] Done
|
||||
- [ ] Not done
|
||||
|
||||
## Anyways
|
||||
|
||||
I should style in the future this a little bit. For now this just works as expected.
|
||||
23
original/blog/upgrade.md
Normal file
23
original/blog/upgrade.md
Normal file
@@ -0,0 +1,23 @@
|
||||
---
|
||||
title: First Upgrade
|
||||
description: Upgrade to the cluster
|
||||
date: 2026-04-29
|
||||
slug: upgrade
|
||||
---
|
||||
|
||||
Today I have upgraded the cluster from 16GB of ram to 48GB of ram. And also I added a new 8TB HDD drive.
|
||||
|
||||
Now I have an small problem all the media and random files inside the original HDD were inside a proxmox virtual qcow disk which
|
||||
is just a disk file that all the other containers from the proxmox instance had mounted. Now with this new disk
|
||||
I made a ZFS filesystem.
|
||||
|
||||
The ZFS filesystem is great for servers. It has a lot of features like having on-write compression and decompression
|
||||
and also it is very easy to add new disks to a "zpool" of disks.
|
||||
|
||||
Right now I'm copying all the files inside the old virtual .qcow disk file onto the new ZFS filesystem that I have made
|
||||
on the new disk. When this finishes, I will wipe the old disk and add it to the ZFS pool.
|
||||
|
||||
For now it will be on RAID0. These disks are relatively new, so maybe in the far future (in about 3 years) I will consider
|
||||
maybe making a RAID5. I think it should be easy, right?
|
||||
|
||||
Anyways see ya
|
||||
Reference in New Issue
Block a user