How to configure HTTPS on Apache2

An important step when deploying an Apache2 server is the transition from the HTTP protocol to HTTPS. This allows for the encryption of data between the client and the server to protect its content from being transmitted in plain text over the internet.

Read more

Separating and Sorting Postfix and Dovecot Logs with Rsyslog

I encountered a rather constraining issue for sticklers like me; I have my mail server hosting Postfix and Dovecot duo. The logs are respectively distributed in /var/log/mail.log for Postfix and /var/log/mail.log for Dovecot. Problem is, when sending these logs via Rsyslog to the receiving server, I ended up with a concatenation of both files into one. Let’s discover the solution to this problem together!

Read more

Install a LAMP server for WordPress

The goal of this tutorial is to set up a WordPress server. For this, we will install and configure Apache and MariaDB. You can use this tutorial for another tool like GLPI, but you will obviously need to check the official website for the required PHP packages.

Read more

Delete the local-lvm partition on a new installation on Proxmox

After a new installation, the main disk on which Proxmox is installed consists of two partitions.

local and local-lvm

By default, the virtual machines and containers will be stored on the local-lvm partition.

And on the local partition, the backups, templates, and iso files will be stored.

If you have a second disk or several in a raid, it may be useful to delete the local-lvm partition in order to allocate its space to the local partition to store more content (backups, iso, template, etc.).

Screenshot of Datastores on a Proxmox server

Read more