Asif Bacchus 2019-07-20 19:20:41 -06:00
parent 0ff24110d7
commit 13a6e01f3e

19
03.-Script-examples.md Normal file

@ -0,0 +1,19 @@
# script examples
Most common -- Defaults, custom logfile location and use 503 functionality:
```bash
./seafbackup.sh --log /var/log/seafbackup.sh --use-503
```
Without 503:
```bash
./seafbackup.sh -l /var/log/seafbackup.sh
```
Use a custom 503 error page, webroot and logfile location:
```bash
./seafbackup.sh -l /var/log/seafbackup.sh --use-503 --503-path /var/www/backup.html --webroot /var/www
```