diff --git a/docs/how-tos/backup-to-ftp.md b/docs/how-tos/backup-to-ftp.md index 976e231..a1ff18a 100644 --- a/docs/how-tos/backup-to-ftp.md +++ b/docs/how-tos/backup-to-ftp.md @@ -11,7 +11,7 @@ As described for SSH backup section, to change the storage of your backup and us You need to add the full remote path by adding `--path /home/jkaninda/backups` flag or using `REMOTE_PATH` environment variable. {: .note } -These environment variables are required for SSH backup `FTP_HOST_NAME`, `FTP_USER`, `REMOTE_PATH`, `FTP_PORT` or `FTP_PASSWORD`. +These environment variables are required for SSH backup `FTP_HOST`, `FTP_USER`, `REMOTE_PATH`, `FTP_PORT` or `FTP_PASSWORD`. ```yml services: @@ -30,7 +30,7 @@ services: - DB_USERNAME=username - DB_PASSWORD=password ## FTP config - - FTP_HOST_NAME="hostname" + - FTP_HOST="hostname" - FTP_PORT=21 - FTP_USER=user - FTP_PASSWORD=password diff --git a/docs/how-tos/backup-to-ssh.md b/docs/how-tos/backup-to-ssh.md index 07daf60..c2be963 100644 --- a/docs/how-tos/backup-to-ssh.md +++ b/docs/how-tos/backup-to-ssh.md @@ -11,7 +11,7 @@ As described for s3 backup section, to change the storage of your backup and use You need to add the full remote path by adding `--path /home/jkaninda/backups` flag or using `REMOTE_PATH` environment variable. {: .note } -These environment variables are required for SSH backup `SSH_HOST_NAME`, `SSH_USER`, `SSH_REMOTE_PATH`, `SSH_IDENTIFY_FILE`, `SSH_PORT` or `SSH_PASSWORD` if you dont use a private key to access to your server. +These environment variables are required for SSH backup `SSH_HOST`, `SSH_USER`, `SSH_REMOTE_PATH`, `SSH_IDENTIFY_FILE`, `SSH_PORT` or `SSH_PASSWORD` if you dont use a private key to access to your server. Accessing the remote server using password is not recommended, use private key instead. ```yml @@ -33,7 +33,7 @@ services: - DB_USERNAME=username - DB_PASSWORD=password ## SSH config - - SSH_HOST_NAME="hostname" + - SSH_HOST="hostname" - SSH_PORT=22 - SSH_USER=user - REMOTE_PATH=/home/jkaninda/backups @@ -73,7 +73,7 @@ services: - DB_USERNAME=username - DB_PASSWORD=password ## SSH config - - SSH_HOST_NAME="hostname" + - SSH_HOST="hostname" - SSH_PORT=22 - SSH_USER=user - REMOTE_PATH=/home/jkaninda/backups @@ -125,7 +125,7 @@ spec: # Please use secret! - name: DB_PASSWORD value: "" - - name: SSH_HOST_NAME + - name: SSH_HOST value: "" - name: SSH_PORT value: "22"