-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy path.env.example
More file actions
42 lines (36 loc) · 1.46 KB
/
.env.example
File metadata and controls
42 lines (36 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# =============================================================================
# Pulsarr Configuration
# =============================================================================
# Copy this file to .env and update values for your setup.
# Most settings have sensible defaults and can be configured via the web UI.
# Environment variables override web UI settings on restart.
# Remove a variable to let the web UI value persist instead.
#
# Full list of environment variables:
# https://pulsarr.dev/docs/development/environment-variables
# =============================================================================
# --- Timezone (Docker only) ---
# Only set this when running in a container. Native installs use system timezone.
# TZ=UTC
# --- Server ---
# Internal port the server binds to (only change if different from port above)
# listenPort=3003
# URL prefix for subfolder reverse proxy (e.g., /pulsarr)
# basePath=/
# --- Security ---
# Set true only if serving the UI over HTTPS
# cookieSecured=false
# Options: required, requiredExceptLocal, disabled
# authenticationMethod=required
# --- Database (SQLite — default, no config needed) ---
# Native installs manage this automatically via dataDir. Only modify for Docker.
# dbPath=./data/db/pulsarr.db
# --- Database (PostgreSQL — uncomment to use) ---
# dbType=postgres
# dbHost=localhost
# dbPort=5432
# dbName=pulsarr
# dbUser=postgres
# dbPassword=
# --- Apprise Notifications ---
# appriseUrl=http://localhost:8000