add swap setup instructions to README prerequisites

This commit is contained in:
2026-03-22 17:32:48 +01:00
parent 22198784d3
commit a51f86ea0a

View File

@@ -46,7 +46,7 @@ graph TB
## Prerequisites ## Prerequisites
- A VPS with SSH access - A VPS with SSH access (minimum 1 core, 3 GB RAM)
- Domain `t-gstone.de` with DNS control - Domain `t-gstone.de` with DNS control
- Git installed locally - Git installed locally
@@ -56,6 +56,18 @@ Check your VPS OS:
cat /etc/os-release cat /etc/os-release
``` ```
### Swap (recommended)
If your VPS has no swap, add a 2 GB swapfile to prevent OOM kills:
```bash
sudo fallocate -l 2G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab
```
## DNS Setup ## DNS Setup
Create these A records pointing to your VPS IP: Create these A records pointing to your VPS IP: