Files
docker-arr-stack/.env.example
Ricardo 089c9e2b7c added arcane service and .env variables for
encryption and jwt secrets
2025-09-22 23:17:47 +01:00

20 lines
669 B
Plaintext

# Your timezone, https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
TZ=Europe/Lisbon
# UNIX PUID and PGID, find with: id $USER
PUID=1000
PGID=1000
# The directory where configuration will be stored.
ROOT=/home/{youruser}/
# The directory where data will be stored.
HDDSTORAGE=/home/{youruser}/Storage/
# Wireguard Settings
#Your public ip, auto for auto detect
SERVERURL=auto
#number of devices to generate configuration to connect to the wireguard vpn
PEERS=7
APP_URL="http://localhost:9010"
ENVIRONMENT=production
ENCRYPTION_KEY={your_encryption_key} #Run command: openssl rand -base64 32
JWT_SECRET={your_jwt_secret} #Run command: openssl rand -base64 32