Need to migrate your e-mails to a new server? Free and paid versions of our online tool available.
Hero Image

Server Setup Guides

Enable TLS/SSL on Apache – RHEL 9

Enable TLS/SSL on Apache – RHEL 9

Step 1 – Enable mod_ssl

dnf install -y mod_ssl && systemctl restart httpd

Step 2 – Generate self-signed certificate

openssl req -x509 -nodes -days 365 -newkey rsa:2048 \
    -keyout /etc/ssl/private/apache-selfsigned.key \
    -out /etc/ssl/certs/apache-self...
7th May 2026

Enable TLS/SSL on Nginx – Arch Linux

Enable TLS/SSL on Nginx – Arch Linux

Step 1 – Self-signed certificate (testing)

openssl req -x509 -nodes -days 365 -newkey rsa:2048 \
    -keyout /etc/ssl/private/nginx-selfsigned.key \
    -out /etc/ssl/certs/nginx-selfsigned.crt \
    -subj "/CN=example.com"
openssl dhparam -out /etc/ssl/certs...
7th May 2026

Enable TLS/SSL on Nginx – RHEL 9

Enable TLS/SSL on Nginx – RHEL 9

Step 1 – Self-signed certificate (testing)

openssl req -x509 -nodes -days 365 -newkey rsa:2048 \
    -keyout /etc/ssl/private/nginx-selfsigned.key \
    -out /etc/ssl/certs/nginx-selfsigned.crt \
    -subj "/CN=example.com"
openssl dhparam -out /etc/ssl/certs/dhp...
7th May 2026

ESX command line vmi on and off

Get a list of all VMs

vim-cmd vmsvc/getallvms

Power on

vim-cmd vmsvc/power.on ID_NUMBER

Suspend

vim-cmd vmsvc/power.suspend ID_NUMBER

Resume

vim-cmd vmsvc/power.suspend_resume ID_NUMBER

Other vmsvc commands:

~ # vim-cmd vmsvc
Commands available under vmsvc/:
acquiremksticket...
20th Jan 2019

Get back PHP7.4 on FreeBSD

Recently freebsd did drop (reason: eol) php7.4 support in FreeBSD and it is not available via packages or latest ports anymore. This guide will get back php7.4 from ports using help of git commit log. Last ports php7.4 related (update to php 7.4.33) commit was in git 27ac371f93d36f77f00b8da261e496...

17th Jan 2023