diff options
author | Friedrich Beckmann <friedrich.beckmann@gmx.de> | 2025-06-14 14:49:39 +0200 |
---|---|---|
committer | Friedrich Beckmann <friedrich.beckmann@gmx.de> | 2025-06-14 14:49:39 +0200 |
commit | 28107273e9c355c4cfdf51e79cbda56f51c90a50 (patch) | |
tree | 781b9c9f954a07091563b820a157fc6f38209748 | |
parent | ed1222f2330e38335a521e7673c9f9f88f5c10fd (diff) |
switched from scp to rsync for file transfer
-rw-r--r-- | content/help.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/help.md b/content/help.md index ee80141..360aec5 100644 --- a/content/help.md +++ b/content/help.md @@ -127,9 +127,9 @@ chmod -R go+r public #### Upload the files -Copy the files in the folder "public" via [secure copy](https://manpages.debian.org/testing/openssh-client/scp.1.en.html) to the webserver. +Copy the files in the folder "public" via "rsync" to the webserver. ``` -scp -r public/* silke@fredowski.duckdns.org:/var/www +rsync -avhP --delete public/* fritz@fredowski.duckdns.org:/var/www ``` |