created pinchflat

This commit is contained in:
2026-05-19 09:13:04 -07:00
parent a4ec975fff
commit 80f173ebc5
2 changed files with 64 additions and 0 deletions
+36
View File
@@ -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