diff --git a/404.html b/404.html index 0021b27..9282893 100644 --- a/404.html +++ b/404.html @@ -4,7 +4,7 @@
debug = false
quiet = false
error_stderr = false
activity = false
log_queues = "1m"
log_file = ""
log_files = 10
log_file_mb = 10
interval = "2m"
start_delay = "1m"
retry_delay = "5m"
parallel = 1
file_mode = "0644"
dir_mode = "0755"
[folders]
interval = "0s"
debug = false
quiet = false
error_stderr = false
activity = false
log_queues = "1m"
log_file = ""
log_files = 10
log_file_mb = 10
interval = "2m"
start_delay = "1m"
retry_delay = "5m"
parallel = 1
file_mode = "0644"
dir_mode = "0755"
[folders]
interval = "0s"
TZ=America/New_York
UN_DEBUG=false
UN_QUIET=false
UN_ERROR_STDERR=false
UN_ACTIVITY=false
UN_LOG_QUEUES=1m
UN_LOG_FILE=
UN_LOG_FILES=10
UN_LOG_FILE_MB=10
UN_INTERVAL=2m
UN_START_DELAY=1m
UN_RETRY_DELAY=5m
UN_MAX_RETRIES=3
UN_PARALLEL=1
UN_FILE_MODE=0644
UN_DIR_MODE=0755
UN_FOLDERS_INTERVAL=0s
TZ=America/New_York
UN_DEBUG=false
UN_QUIET=false
UN_ERROR_STDERR=false
UN_ACTIVITY=false
UN_LOG_QUEUES=1m
UN_LOG_FILE=
UN_LOG_FILES=10
UN_LOG_FILE_MB=10
UN_INTERVAL=2m
UN_START_DELAY=1m
UN_RETRY_DELAY=5m
UN_MAX_RETRIES=3
UN_PARALLEL=1
UN_FILE_MODE=0644
UN_DIR_MODE=0755
UN_FOLDERS_INTERVAL=0s
Config Name | Variable Name | Default / Note |
---|---|---|
debug | UN_DEBUG | false / Turns on more logs |
quiet | UN_QUIIET | false / Do not print logs to stdout or stderr |
error_stderr | UN_ERROR_STDERR | false / Print ERROR lines to stderr instead of stdout. |
activity | UN_ACTIVITY | false / Setting true will print only queue counts with activity. |
log_queues | UN_LOG_QUEUES | 1m / Uses Go Duration. How often to print internal counters. |
log_file | UN_LOG_FILE | None by default. Optionally provide a file path to write logs |
log_files | UN_LOG_FILES | 10 / Log files to keep after rotating. 0 disables rotation |
log_file_mb | UN_LOG_FILE_MB | 10 / Max size of log files in megabytes |
interval | UN_INTERVAL | 2m / How often apps are polled, recommend 1m to 5m |
start_delay | UN_START_DELAY | 1m / Files are queued at least this long before extraction |
retry_delay | UN_RETRY_DELAY | 5m / Failed extractions are retried after at least this long |
max_retries | UN_MAX_RETRIES | 3 / Times to retry failed extractions. 0 = unlimited. |
parallel | UN_PARALLEL | 1 / Concurrent extractions, only recommend 1 |
file_mode | UN_FILE_MODE | 0644 / Extracted files are written with this mode |
dir_mode | UN_DIR_MODE | 0755 / Extracted folders are written with this mode |
passwords | UN_PASSWORD_0 | No default; empty list. Provide a list of RAR passwords to try. |
folders.interval | UN_FOLDERS_INTERVAL | 1s / How often poller checks for new folders. Use 1ms to disable it. |
If a wrong password is provided, the entire archive must @@ -70,67 +70,67 @@
You may store any string parameter (except time intervals) into a separate file
by setting the value to filepath:/path/to/file.txt
. In other words, if you want
your Radarr API key to be read from a separate file, instead of storing it directly
-in the config file or environment variables you can do this:
[[radarr]]
url = "https://some.url/radarr"
api_key = "filepath:/etc/secrets/radarr.txt"
Or if using environment variables:
UN_RADARR_0_API_KEY=filepath:/etc/secrets/radarr.txt
Then store the API key (and only the API key) in /etc/secrets/radarr.txt
.
This feature was added in Unpackerr v0.14.0.
[[radarr]]
url = "https://some.url/radarr"
api_key = "filepath:/etc/secrets/radarr.txt"
Or if using environment variables:
UN_RADARR_0_API_KEY=filepath:/etc/secrets/radarr.txt
Then store the API key (and only the API key) in /etc/secrets/radarr.txt
.
This feature was added in Unpackerr v0.14.0.
The web server currently only provides prometheus metrics, which you can display in Grafana. It provides no UI. This may change in the future. The web server was added in v0.12.0.
[webserver]
metrics = true
listen_addr = "0.0.0.0:5656"
log_file = ""
log_files = 10
log_file_mb = 10
ssl_cert_file = ""
ssl_key_file = ""
urlbase = "/"
upstreams = [ "127.0.0.1/32", "10.1.2.0/24" ]
[webserver]
metrics = true
listen_addr = "0.0.0.0:5656"
log_file = ""
log_files = 10
log_file_mb = 10
ssl_cert_file = ""
ssl_key_file = ""
urlbase = "/"
upstreams = [ "127.0.0.1/32", "10.1.2.0/24" ]
UN_WEBSERVER_METRICS=true
UN_WEBSERVER_LISTEN_ADDR=0.0.0.0:5656
UN_WEBSERVER_LOG_FILE=
UN_WEBSERVER_LOG_FILES=10
UN_WEBSERVER_LOG_FILE_MB=10
UN_WEBSERVER_URLBASE=/
UN_WEBSERVER_UPSTREAMS=127.0.0.1/32,10.1.2.0/24
Config Name | Variable Name | Default / Note |
---|---|---|
webserver.metrics | UN_WEBSERVER_METRICS | false / Set this to true to enable the webserver, and metrics |
webserver.listen_addr | UN_WEBSERVER_LISTEN_ADDR | 0.0.0.0:5656 / ip:port to listen on. 0.0.0.0 is all IPs |
webserver.log_file | UN_WEBSERVER_LOG_FILE | No default. Optionally provide a file path to write HTTP logs |
webserver.log_files | UN_WEBSERVER_LOG_FILES | 10 / Log files to keep after rotating. 0 to disable |
webserver.log_file_mb | UN_WEBSERVER_LOG_FILE_MB | 10 / Max size of HTTP log files in megabytes |
webserver.ssl_cert_file | UN_WEBSERVER_SSL_CERT_FILE | No default. Path to SSL cert file to serve HTTPS |
webserver.ssl_key_file | UN_WEBSERVER_SSL_KEY_FILE | No default. Path to SSL key file to serve HTTPS |
webserver.urlbase | UN_WEBSERVER_URLBASE | / / Base URL path to serve HTTP content |
webserver.upstreams | UN_WEBSERVER_UPSTREAMS | No default. List of upstream proxy CIDRs or IPs to trust |
[[sonarr]]
url = "http://127.0.0.1:8989"
api_key = "0123456789abcdef0123456789abcdef"
paths = ['/downloads']
protocols = "torrent"
timeout = "10s"
delete_delay = "5m"
delete_orig = false
syncthing = false
[[sonarr]]
url = "http://127.0.0.1:8989"
api_key = "0123456789abcdef0123456789abcdef"
paths = ['/downloads']
protocols = "torrent"
timeout = "10s"
delete_delay = "5m"
delete_orig = false
syncthing = false
UN_SONARR_0_URL=http://sonarr:8989
UN_SONARR_0_API_KEY=
UN_SONARR_0_PATHS_0=/downloads
UN_SONARR_0_PROTOCOLS=torrent
UN_SONARR_0_TIMEOUT=10s
UN_SONARR_0_DELETE_ORIG=false
UN_SONARR_0_DELETE_DELAY=5m
Config Name | Variable Name | Default / Note |
---|---|---|
sonarr.url | UN_SONARR_0_URL | No Default. Something like: http://localhost:8989 |
sonarr.api_key | UN_SONARR_0_API_KEY | No Default. Provide URL and API key if you use Sonarr |
sonarr.paths | UN_SONARR_0_PATHS_0 | /downloads List of paths where content is downloaded for Sonarr. Used as fallback if the path Sonarr reports does not exist or is not accessible. |
sonarr.protocols | UN_SONARR_0_PROTOCOLS | torrent Protocols to process. Alt: torrent,usenet |
sonarr.timeout | UN_SONARR_0_TIMEOUT | 10s / How long to wait for the app to respond |
sonarr.delete_orig | UN_SONARR_0_DELETE_ORIG | false / Delete archives after import? Recommend not setting this to true |
sonarr.delete_delay | UN_SONARR_0_DELETE_DELAY | 5m / Extracts are deleted this long after import, -1s to disable |
sonarr.syncthing | UN_SONARR_0_SYNCTHING | false / Setting this to true makes unpackerr wait for syncthing to finish |
[[radarr]]
url = "http://127.0.0.1:7878"
api_key = "0123456789abcdef0123456789abcdef"
paths = ['/downloads']
protocols = "torrent"
timeout = "10s"
delete_delay = "5m"
delete_orig = false
syncthing = false
[[radarr]]
url = "http://127.0.0.1:7878"
api_key = "0123456789abcdef0123456789abcdef"
paths = ['/downloads']
protocols = "torrent"
timeout = "10s"
delete_delay = "5m"
delete_orig = false
syncthing = false
UN_RADARR_0_URL=http://radarr:7878
UN_RADARR_0_API_KEY=0123456789abcdef0123456789abcdef
UN_RADARR_0_PATHS_0=/downloads
UN_RADARR_0_PROTOCOLS=torrent
UN_RADARR_0_TIMEOUT=10s
UN_RADARR_0_DELETE_ORIG=false
UN_RADARR_0_DELETE_DELAY=5m
Config Name | Variable Name | Default / Note |
---|---|---|
radarr.url | UN_RADARR_0_URL | No Default. Something like: http://localhost:7878 |
radarr.api_key | UN_RADARR_0_API_KEY | No Default. Provide URL and API key if you use Radarr |
radarr.paths | UN_RADARR_0_PATHS_0 | /downloads List of paths where content is downloaded for Radarr. Used as fallback if the path Radarr reports does not exist or is not accessible |
radarr.protocols | UN_RADARR_0_PROTOCOLS | torrent Protocols to process. Alt: torrent,usenet |
radarr.timeout | UN_RADARR_0_TIMEOUT | 10s / How long to wait for the app to respond |
radarr.delete_orig | UN_RADARR_0_DELETE_ORIG | false / Delete archives after import? Recommend not setting this to true |
radarr.delete_delay | UN_RADARR_0_DELETE_DELAY | 5m / Extracts are deleted this long after import, -1s to disable |
radarr.syncthing | UN_RADARR_0_SYNCTHING | false / Setting this to true makes unpackerr wait for syncthing to finish |
[[lidarr]]
url = "http://127.0.0.1:8686"
api_key = "0123456789abcdef0123456789abcdef"
paths = ['/downloads']
protocols = "torrent"
timeout = "10s"
delete_delay = "5m"
delete_orig = false
syncthing = false
[[lidarr]]
url = "http://127.0.0.1:8686"
api_key = "0123456789abcdef0123456789abcdef"
paths = ['/downloads']
protocols = "torrent"
timeout = "10s"
delete_delay = "5m"
delete_orig = false
syncthing = false
UN_LIDARR_0_URL=http://lidarr:8686
UN_LIDARR_0_API_KEY=0123456789abcdef0123456789abcdef
UN_LIDARR_0_PATHS_0=/downloads
UN_LIDARR_0_PROTOCOLS=torrent
UN_LIDARR_0_TIMEOUT=10s
UN_LIDARR_0_DELETE_ORIG=false
UN_LIDARR_0_DELETE_DELAY=5m
Config Name | Variable Name | Default / Note |
---|---|---|
lidarr.url | UN_LIDARR_0_URL | No Default. Something like: http://localhost:8686 |
lidarr.api_key | UN_LIDARR_0_API_KEY | No Default. Provide URL and API key if you use Lidarr |
lidarr.paths | UN_LIDARR_0_PATHS_0 | /downloads List of paths where content is downloaded for Lidarr. Used as fallback if the path Lidarr reports does not exist or is not accessible |
lidarr.protocols | UN_LIDARR_0_PROTOCOLS | torrent Protocols to process. Alt: torrent,usenet |
lidarr.timeout | UN_LIDARR_0_TIMEOUT | 10s / How long to wait for the app to respond |
lidarr.delete_orig | UN_LIDARR_0_DELETE_ORIG | false / Delete archives after import? Recommend not setting this to true |
lidarr.delete_delay | UN_LIDARR_0_DELETE_DELAY | 5m / Extracts are deleted this long after import, -1s to disable |
lidarr.syncthing | UN_LIDARR_0_SYNCTHING | false / Setting this to true makes unpackerr wait for syncthing to finish |
[[readarr]]
url = "http://127.0.0.1:8787"
api_key = "0123456789abcdef0123456789abcdef"
paths = ['/downloads']
protocols = "torrent"
timeout = "10s"
delete_delay = "5m"
delete_orig = false
syncthing = false
[[readarr]]
url = "http://127.0.0.1:8787"
api_key = "0123456789abcdef0123456789abcdef"
paths = ['/downloads']
protocols = "torrent"
timeout = "10s"
delete_delay = "5m"
delete_orig = false
syncthing = false
UN_READARR_0_URL=http://readarr:8787
UN_READARR_0_API_KEY=0123456789abcdef0123456789abcdef
UN_READARR_0_PATHS_0=/downloads
UN_READARR_0_PROTOCOLS=torrent
UN_READARR_0_TIMEOUT=10s
UN_READARR_0_DELETE_ORIG=false
UN_READARR_0_DELETE_DELAY=5m
Config Name | Variable Name | Default / Note |
---|---|---|
readarr.url | UN_READARR_0_URL | No Default. Something like: http://localhost:8787 |
readarr.api_key | UN_READARR_0_API_KEY | No Default. Provide URL and API key if you use Readarr |
readarr.paths | UN_READARR_0_PATHS_0 | /downloads List of paths where content is downloaded for Readarr. Used as fallback if the path Readarr reports does not exist or is not accessible |
readarr.protocols | UN_READARR_0_PROTOCOLS | torrent Protocols to process. Alt: torrent,usenet |
readarr.timeout | UN_READARR_0_TIMEOUT | 10s / How long to wait for the app to respond |
readarr.delete_orig | UN_READARR_0_DELETE_ORIG | false / Delete archives after import? Recommend not setting this to true |
readarr.delete_delay | UN_READARR_0_DELETE_DELAY | 5m / Extracts are deleted this long after import, -1s to disable |
readarr.syncthing | UN_READARR_0_SYNCTHING | false / Setting this to true makes unpackerr wait for syncthing to finish |
[[whisparr]]
url = "http://127.0.0.1:6969"
api_key = "0123456789abcdef0123456789abcdef"
paths = ['/downloads']
protocols = "torrent"
timeout = "10s"
delete_delay = "5m"
delete_orig = false
syncthing = false
[[whisparr]]
url = "http://127.0.0.1:6969"
api_key = "0123456789abcdef0123456789abcdef"
paths = ['/downloads']
protocols = "torrent"
timeout = "10s"
delete_delay = "5m"
delete_orig = false
syncthing = false
UN_WHISPARR_0_URL=http://whisparr:6969
UN_WHISPARR_0_API_KEY=0123456789abcdef0123456789abcdef
UN_WHISPARR_0_PATHS_0=/downloads
UN_WHISPARR_0_PROTOCOLS=torrent
UN_WHISPARR_0_TIMEOUT=10s
UN_WHISPARR_0_DELETE_ORIG=false
UN_WHISPARR_0_DELETE_DELAY=5m
Config Name | Variable Name | Default / Note |
---|---|---|
whisparr.url | UN_WHISPARR_0_URL | No Default. Something like: http://localhost:8787 |
whisparr.api_key | UN_WHISPARR_0_API_KEY | No Default. Provide URL and API key if you use Readarr |
whisparr.paths | UN_WHISPARR_0_PATHS_0 | /downloads List of paths where content is downloaded for Readarr. Used as fallback if the path Readarr reports does not exist or is not accessible |
whisparr.protocols | UN_WHISPARR_0_PROTOCOLS | torrent Protocols to process. Alt: torrent,usenet |
whisparr.timeout | UN_WHISPARR_0_TIMEOUT | 10s / How long to wait for the app to respond |
whisparr.delete_orig | UN_WHISPARR_0_DELETE_ORIG | false / Delete archives after import? Recommend not setting this to true |
whisparr.delete_delay | UN_WHISPARR_0_DELETE_DELAY | 5m / Extracts are deleted this long after import, -1s to disable |
whisparr.syncthing | UN_WHISPARR_0_SYNCTHING | false / Setting this to true makes unpackerr wait for syncthing to finish |
[[folder]]
path = '''/some/folder/to/watch'''
extract_path = ''
delete_after = "10m"
disable_recursion = false
delete_files = false
delete_original = false
disable_log = false
move_back = false
extract_isos = false
[[folder]]
path = '''/some/folder/to/watch'''
extract_path = ''
delete_after = "10m"
disable_recursion = false
delete_files = false
delete_original = false
disable_log = false
move_back = false
extract_isos = false
UN_FOLDER_0_PATH=/some/folder/to/watch
UN_FOLDER_0_EXTRACT_PATH=
UN_FOLDER_0_DELETE_AFTER=10m
UN_FOLDER_0_DELETE_ORIGINAL=false
UN_FOLDER_0_DELETE_FILES=false
UN_FOLDER_0_MOVE_BACK=false
UN_FOLDER_0_PATH=/some/folder/to/watch
UN_FOLDER_0_EXTRACT_PATH=
UN_FOLDER_0_DELETE_AFTER=10m
UN_FOLDER_0_DELETE_ORIGINAL=false
UN_FOLDER_0_DELETE_FILES=false
UN_FOLDER_0_MOVE_BACK=false
Folders are a way to watch a folder for things to extract. You can use this to monitor your download client's "move to" path if you're not using it with an Starr app.
Config Name | Variable Name | Default / Note |
---|---|---|
folder.path | UN_FOLDER_0_PATH | No Default; folder to watch for archives. Not for Starr apps |
folder.extract_path | UN_FOLDER_0_EXTRACT_PATH | Where to extract to. Default is the same as path |
folder.delete_after | UN_FOLDER_0_DELETE_AFTER | 10m Delete extracted files and/or archives after this duration; 0 disables |
folder.disable_log | UN_FOLDER_0_DISABLE_LOG | false Turns off creation of extraction logs files for this folder |
folder.delete_original | UN_FOLDER_0_DELETE_ORIGINAL | false Delete archives after successful extraction |
folder.delete_files | UN_FOLDER_0_DELETE_FILES | false Delete extracted files after successful extraction |
folder.move_back | UN_FOLDER_0_MOVE_BACK | false Move extracted items back into original folder |
folder.extract_isos | UN_FOLDER_0_EXTRACT_ISOS | false Setting this to true enables .iso file extraction |
folder.disable_recursion | UN_FOLDER_0_DISABLE_RECURSION | false Setting this to true disables extracting archives inside archives |
[[cmdhook]]
command = '/my/cool/script' # Path to command or script.
shell = false # Runs the command inside /bin/sh ('nix) or cmd.exe (Windows).
name = "" # Provide an optional name for logging.
silent = false # Hides command output from logs.
events = [1,2,3,4] # list of event ids to include, [0] == all.
exclude = ["lidarr"] # list of apps to exclude, ie. ["radarr", "lidarr"]
timeout = "10s" # You can adjust how long to wait for a server response.
[[cmdhook]]
command = '/my/cool/script' # Path to command or script.
shell = false # Runs the command inside /bin/sh ('nix) or cmd.exe (Windows).
name = "" # Provide an optional name for logging.
silent = false # Hides command output from logs.
events = [1,2,3,4] # list of event ids to include, [0] == all.
exclude = ["lidarr"] # list of apps to exclude, ie. ["radarr", "lidarr"]
timeout = "10s" # You can adjust how long to wait for a server response.
UN_CMDHOOK_0_COMMAND=/usr/bin/env
UN_CMDHOOK_0_NAME=
UN_CMDHOOK_0_TIMEOUT=10s
UN_CMDHOOK_0_SILENT=false
UN_CMDHOOK_0_SHELL=true
UN_CMDHOOK_0_EXCLUDE_0=lidarr
UN_CMDHOOK_0_EXCLUDE_1=readarr
UN_CMDHOOK_0_EVENTS_0=1
UN_CMDHOOK_0_EVENTS_1=2
UN_CMDHOOK_0_EVENTS_2=3
UN_CMDHOOK_0_EVENTS_3=4
UN_CMDHOOK_0_COMMAND=/usr/bin/env
UN_CMDHOOK_0_NAME=
UN_CMDHOOK_0_TIMEOUT=10s
UN_CMDHOOK_0_SILENT=false
UN_CMDHOOK_0_SHELL=true
UN_CMDHOOK_0_EXCLUDE_0=lidarr
UN_CMDHOOK_0_EXCLUDE_1=readarr
UN_CMDHOOK_0_EVENTS_0=1
UN_CMDHOOK_0_EVENTS_1=2
UN_CMDHOOK_0_EVENTS_2=3
UN_CMDHOOK_0_EVENTS_3=4
Unpackerr can execute commands (or scripts) before and after an archive extraction.
The only thing required is a command. Name is optional, and used in logs only.
Setting shell
to true
executes your command after /bin/sh -c
or cmd.exe /c
@@ -143,9 +143,9 @@
[[webhook]]
url = "https://notifiarr.com/api/v1/notification/unpackerr/api_key_from_notifiarr_com"
name = "" # Set this to hide the URL in logs.
silent = false # Do not log success (less log spam).
events = [1,2,3] # List of event ids to include, 0 == all.
## Advanced Optional Webhook Configuration
nickname = "" # Used in Discord and Slack templates as bot name, in Telegram as chat_id.
channel = "" # Passed into templates. Used in Slack templates for destination channel.
template_path = "" # Override internal webhook template for discord.com or other hooks.
template = "" # Values: notifiarr, discord, telegram, gotify, pushover, slack
ignore_ssl = true # Set this to true to ignore the SSL certificate on the server.
timeout = "9s" # You can adjust how long to wait for a server response.
exclude = ["lidarr"] # List of apps to exclude, ie. ["radarr", "lidarr"]
content_type = "application/json" # Set this if your template uses another MIME type.
[[webhook]]
url = "https://notifiarr.com/api/v1/notification/unpackerr/api_key_from_notifiarr_com"
name = "" # Set this to hide the URL in logs.
silent = false # Do not log success (less log spam).
events = [1,2,3] # List of event ids to include, 0 == all.
## Advanced Optional Webhook Configuration
nickname = "" # Used in Discord and Slack templates as bot name, in Telegram as chat_id.
channel = "" # Passed into templates. Used in Slack templates for destination channel.
template_path = "" # Override internal webhook template for discord.com or other hooks.
template = "" # Values: notifiarr, discord, telegram, gotify, pushover, slack
ignore_ssl = true # Set this to true to ignore the SSL certificate on the server.
timeout = "9s" # You can adjust how long to wait for a server response.
exclude = ["lidarr"] # List of apps to exclude, ie. ["radarr", "lidarr"]
content_type = "application/json" # Set this if your template uses another MIME type.
UN_WEBHOOK_0_URL=https://a303739bc23bfcfa79b9cf36fd92833x.m.pipedream.net
UN_WEBHOOK_0_NAME=
UN_WEBHOOK_0_NICKNAME=Unpackerr
UN_WEBHOOK_0_CHANNEL=
UN_WEBHOOK_0_TIMEOUT=10s
UN_WEBHOOK_0_SILENT=false
UN_WEBHOOK_0_IGNORE_SSL=false
UN_WEBHOOK_0_EXCLUDE_0=lidarr
UN_WEBHOOK_0_EXCLUDE_1=readarr
UN_WEBHOOK_0_EVENTS_0=1
UN_WEBHOOK_0_EVENTS_1=2
UN_WEBHOOK_0_EVENTS_2=3
UN_WEBHOOK_0_TEMPLATE_PATH=
UN_WEBHOOK_0_TEMPLATE=
UN_WEBHOOK_0_CONTENT_TYPE=application/json
UN_WEBHOOK_0_URL=https://a303739bc23bfcfa79b9cf36fd92833x.m.pipedream.net
UN_WEBHOOK_0_NAME=
UN_WEBHOOK_0_NICKNAME=Unpackerr
UN_WEBHOOK_0_CHANNEL=
UN_WEBHOOK_0_TIMEOUT=10s
UN_WEBHOOK_0_SILENT=false
UN_WEBHOOK_0_IGNORE_SSL=false
UN_WEBHOOK_0_EXCLUDE_0=lidarr
UN_WEBHOOK_0_EXCLUDE_1=readarr
UN_WEBHOOK_0_EVENTS_0=1
UN_WEBHOOK_0_EVENTS_1=2
UN_WEBHOOK_0_EVENTS_2=3
UN_WEBHOOK_0_TEMPLATE_PATH=
UN_WEBHOOK_0_TEMPLATE=
UN_WEBHOOK_0_CONTENT_TYPE=application/json
This application can send a POST
webhook to a URL when an extraction begins, and again
when it finishes. Configure 1 or more webhook URLs with the parameters below.
Works great with notifiarr.com. You can use
diff --git a/docs/install/docker/index.html b/docs/install/docker/index.html
index 801d7de..df6d356 100644
--- a/docs/install/docker/index.html
+++ b/docs/install/docker/index.html
@@ -4,7 +4,7 @@