created pinchflat
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
# Pinchflat
|
||||
|
||||
# Docker image tag to use (e.g. "latest" or a pinned version like "v2024.5.30")
|
||||
PINCHFLAT_VERSION=latest
|
||||
|
||||
# IANA timezone name for the container (e.g. America/Chicago, America/New_York)
|
||||
PINCHFLAT_TZ=America/Chicago
|
||||
|
||||
# Host port to expose the Pinchflat web UI on
|
||||
PINCHFLAT_PORT=8945
|
||||
|
||||
# Host path where downloaded media will be stored
|
||||
PINCHFLAT_DOWNLOAD=/path/to/downloads
|
||||
|
||||
# Auth - required for production
|
||||
|
||||
# Username for HTTP basic auth on the web UI
|
||||
PINCHFLAT_AUTH_USER=admin
|
||||
|
||||
# Password for HTTP basic auth — use a strong random value
|
||||
PINCHFLAT_AUTH_PASS=changeme
|
||||
|
||||
# Secret used to sign/encrypt session cookies — generate with: openssl rand -hex 64
|
||||
# Changing this will invalidate all active sessions
|
||||
PINCHFLAT_SECRET_KEY=
|
||||
|
||||
# Controls default permissions on created files (022 = owner rw, group/other r)
|
||||
PINCHFLAT_UMASK=022
|
||||
|
||||
# NFS
|
||||
|
||||
# IP address or hostname of the NFS server
|
||||
PINCHFLAT_NFS_SERVER=192.168.1.x
|
||||
|
||||
# NFS export path on the server (e.g. :/mnt/pool/pinchflat)
|
||||
PINCHFLAT_NFS_DEVICE=:/path/to/nfs/share
|
||||
Reference in New Issue
Block a user