diff --git a/docs/backup_restore/proxmox/proxmox_backup.md b/docs/backup_restore/proxmox/proxmox_backup.md
index e835b6c..1644fc3 100644
--- a/docs/backup_restore/proxmox/proxmox_backup.md
+++ b/docs/backup_restore/proxmox/proxmox_backup.md
@@ -3,10 +3,28 @@
## 1. PVE
- Location: verschlüsselt auf hetznerstoragebox gemäß Anleitung https://ralf-peter-kleinert.de/linux-server/proxmox-verschluesselt-backup.html. (Die liegt auch als Anhang im bitwarden)
- Scedule: täglich im cron und wird 14 Tage aufgehoben
-- ÄNDERUNGEN siehe [/etc/fstab](../proxmox/fstab)
-- Log: /root/pve-backup.log
-- Skript: [Location: /root/backup-pve-configs.sh](./backup_pve_configs.sh)
+- ÄNDERUNGEN siehe
+Location: /etc/fstab
+```
+#QNAP
+//192.168.178.254/qnapmultimedia /mnt/qnapmount_mm cifs user,credentials=/root/.credentials/qnapcreds,iocharset=utf8,noperm 0 0
+//192.168.178.254/Backups /mnt/qnapmount_backups cifs user,credentials=/root/.credentials/qnapcreds,iocharset=utf8,noperm 0 0
+
+#Hetznerbox
+//u358899.your-storagebox.de/backup /mnt/hetznerbox cifs user,credentials=/root/.credentials/hetznercreds,iocharset=utf8,noperm 0 0
+#//u358899.your-storagebox.de/backups /mnt/hetznerbox cifs username=u358899,password=vgceBjPMxwq2eT7k,rw
+
+#Storagebox Crypted
+//u358899.your-storagebox.de/backup/backups/proxmox /mnt/storagebox-crypted cifs credentials=/root/.credentials/hetznercreds,iocharset=utf8,rw,_netdev,uid=0,gid=0,file_mode=0660,dir_mode=0770 0 0
+#Storagebox Uncrypted - wird automatisch mit Crypted verbunden
+/mnt/storagebox-crypted /mnt/storagebox-nocrypt fuse./usr/bin/gocryptfs rw,nofail,auto,x-systemd.idle-timeout=10,x-systemd.automount,allow_other,quiet,passfile=/root/.gocryptfspw 0 0
+
+```
+
+
+- Log: /root/pve-backup.log
+- Skript:
Location: /root/backup-pve-configs.sh :
```