-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
41 lines (30 loc) · 1.37 KB
/
Copy path.env.example
File metadata and controls
41 lines (30 loc) · 1.37 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
# RealmOps Configuration
# Copy this file to .env and customize as needed
# =============================================================================
# NETWORK PORTS
# =============================================================================
# Frontend web interface port
FRONTEND_PORT=3000
# Backend API port
BACKEND_PORT=8080
# SFTP server port (for file management)
SFTP_PORT=2022
# =============================================================================
# GAME SERVER SETTINGS
# =============================================================================
# Port range for game servers (each server gets a port from this range)
PORT_RANGE_START=20000
PORT_RANGE_END=40000
# Enable/disable SFTP file management
SFTP_ENABLED=true
# =============================================================================
# SECURITY
# =============================================================================
# Session secret (CHANGE THIS IN PRODUCTION!)
# Generate with: openssl rand -hex 32
SESSION_SECRET=change-me-in-production
# =============================================================================
# ADVANCED (usually don't need to change)
# =============================================================================
# Docker socket path (Linux: unix:///var/run/docker.sock, Windows: npipe:////./pipe/docker_engine)
# GSM_DOCKER_HOST=unix:///var/run/docker.sock