diff --git a/README.md b/README.md index 28f3c633e8..03049c7cb3 100644 --- a/README.md +++ b/README.md @@ -692,9 +692,9 @@ services: `SE_VIDEO_FILE_NAME=auto` will use the session id as the video file name. This ensures that the video file name is unique to upload. Video file name construction automatically works based on Node endpoint `/status` (and optional GraphQL endpoint) to get session ID, capabilities. -`SE_VIDEO_UPLOAD_ENABLED=true` will enable the video upload feature. In the background, it will create a pipefile with file and destination for uploader to consume and proceed. +`SE_VIDEO_UPLOAD_ENABLED=true` (`false` by default) will enable the video upload feature. In the background, it will create a pipefile with file and destination for uploader to consume and proceed. -`SE_VIDEO_INTERNAL_UPLOAD=true` will use RCLONE installed in the container for upload. If you want to use another sidecar container for upload, set it to `false`. +`SE_VIDEO_INTERNAL_UPLOAD=true` (by default) will use RCLONE installed in the container for upload. If you want to use another sidecar container for upload, set it to `false`. | ENV variables per mode | Hub/Nodes | Standalone roles | Dynamic Grid | |------------------------------------------|-------------------|------------------|----------------| diff --git a/Video/uploader.conf b/Video/uploader.conf index f92969be42..0a3162073a 100644 --- a/Video/uploader.conf +++ b/Video/uploader.conf @@ -2,9 +2,9 @@ priority=5 command=/opt/bin/upload.sh killasgroup=true -autostart=%(ENV_SE_VIDEO_INTERNAL_UPLOAD)s +autostart=%(ENV_SE_VIDEO_UPLOAD_ENABLED)s startsecs=0 -autorestart=%(ENV_SE_VIDEO_INTERNAL_UPLOAD)s +autorestart=%(ENV_SE_VIDEO_UPLOAD_ENABLED)s stopsignal=TERM stopwaitsecs=30