From a524f1faf38c128eb8dabdfeef1fbcdc23ae223d Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 3 Dec 2019 23:18:14 +0200 Subject: add configurable URL prefix --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'README.md') diff --git a/README.md b/README.md index 8e5f3ed..4776304 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,13 @@ services: - /path/to/downloads:/downloads ``` +## Configuration via environment variables + +Certain values can be set via environment variables, using the `-e` parameter on the docker command line, or the `environment:` section in docker-compose. + +* __DOWNLOAD_DIR__: path to where the downloads will be saved. Defaults to "/downloads" in the docker image, and "." otherwise. +* __URL_PREFIX__: base path for the web server (for use when hosting behind a reverse proxy). Defaults to "/". + ## Build and run locally Make sure you have node.js installed. -- cgit