Added initial nefarious config
This commit is contained in:
parent
725574b6ce
commit
932b204884
4 changed files with 145 additions and 0 deletions
27
nefarious/.env.example
Normal file
27
nefarious/.env.example
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
# Only sqlite3 works by default
|
||||
DATABASE_URL=sqlite:////config/db.sqlite3
|
||||
|
||||
# Path to download torrents to.
|
||||
# In this setup, we juse use a docker volume as the downloads aren't meant to stay on the system after being watched
|
||||
# You can change this to a directory if you wish to download to the host's file system instead
|
||||
HOST_DOWNLOAD_PATH=downloads
|
||||
|
||||
# Redis host; shouldn't be changed
|
||||
REDIS_HOST=redis
|
||||
|
||||
# Config path for nefarious inside container; leave as is
|
||||
NEFARIOUS_CONFIG_PATH=/config
|
||||
|
||||
# Admin user credentials
|
||||
NEFARIOUS_USER=admin
|
||||
NEFARIOUS_PASS=changeme
|
||||
|
||||
# UID and GID to run as
|
||||
PUID=1000
|
||||
PGID=1000
|
||||
|
||||
# Timezone
|
||||
TZ=Europe/London
|
||||
|
||||
# How many worker processes celery may use; if 0, uses all cpu cores
|
||||
CELERY_WORKERS=0
|
||||
Reference in a new issue