This guide is based on the official Archlinux [Installation Guide][1], [Beginners' Guide][2] and my personal experience.
HDD | fs | size | mountpoint |
---|---|---|---|
/dev/sda1 | LUKS | MAX | - |
/dev/sda1 | LVM | MAX | /dev/mapper/lvm |
#!/usr/bin/env python | |
import sys | |
import imaplib | |
EMAIL_ACCOUNT_SUFFIX = "@mydomain.com" | |
EMAIL_HOST = "mail.myhost.com" | |
EMAIL_ACCOUNTS = { | |
"name": "pass", |
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |