-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
20 lines (17 loc) · 585 Bytes
/
Copy path.env.example
File metadata and controls
20 lines (17 loc) · 585 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Database Configuration
MONGO_URI=mongodb://localhost:27017
MONGO_DB_NAME=obsidian-panel
# Server Configuration
PORT=5000
MC_SERVER_BASE_PATH=/minecraft_server
TEMP_BACKUP_PATH=/tmp/obsidian_backups
NODE_ENV=production
# Security (Required)
# Generate a secure random string (e.g., `openssl rand -hex 32`)
SESSION_SECRET=change_me_to_a_secure_session_secret
# Optional: Manual Java Paths
# The backend auto-detects Java in /usr/lib/jvm/ but you can override:
# JAVA_8_HOME=/path/to/java8
# JAVA_17_HOME=/path/to/java17
# JAVA_21_HOME=/path/to/java21
# JAVA_25_HOME=/path/to/java25