diff options
| author | thomas grothe <thomas@Shai-Hulud.myfiosgateway.com> | 2025-07-21 21:11:37 -0400 |
|---|---|---|
| committer | thomas grothe <thomas@Shai-Hulud.myfiosgateway.com> | 2025-07-21 21:11:37 -0400 |
| commit | caab5b3d52533dc2b03a0d128de186e9c1600f25 (patch) | |
| tree | 7abf859f837b184a6dce5ce8fa47e94e422f2aa4 /fimon/config.sample.ini | |
| parent | a9f69e86c4208f70d859c6ba863a57e17dfd50cc (diff) | |
add file monitor program. thinking of changing the name of this repo to tools or utils because it is no longer really "random" scripts.
Diffstat (limited to 'fimon/config.sample.ini')
| -rw-r--r-- | fimon/config.sample.ini | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/fimon/config.sample.ini b/fimon/config.sample.ini new file mode 100644 index 0000000..cf6e3de --- /dev/null +++ b/fimon/config.sample.ini @@ -0,0 +1,25 @@ +[transfer] +# Directory to monitor for new files +watch_directory = testdir + +# Remote server settings +remote_host = blth +remote_path = ~/testdir/ +ssh_user = thomas +#ssh_key = /path/to/ssh/private/key +ssh_port = 22 + +# Retry settings +max_retries = 3 +retry_delay = 30.0 + +# File handling settings +file_settle_delay = 2.0 + +# Connection settings +connect_timeout = 30 +transfer_timeout = 300 + +# Logging settings +log_level = INFO +log_file = log.txt |
