-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy path.env.example
More file actions
41 lines (28 loc) · 1003 Bytes
/
Copy path.env.example
File metadata and controls
41 lines (28 loc) · 1003 Bytes
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
# AutoPCR Docker Configuration
# Copy this file to .env and modify as needed
# cp .env.example .env
# ---- Server Settings ----
# HTTP server bind address (0.0.0.0 = all interfaces)
AUTOPCR_SERVER_HOST=0.0.0.0
# HTTP server port
AUTOPCR_SERVER_PORT=13200
# Enable debug logging (true/false)
AUTOPCR_SERVER_DEBUG_LOG=false
# Allow new user registration (true/false)
AUTOPCR_SERVER_ALLOW_REGISTER=true
# Superuser QQ number (has admin privileges, leave empty to disable)
AUTOPCR_SERVER_SUPERUSER=
# ---- Public Access (for QQ bot message links) ----
# Public IP or domain for QQ bot to send access links
# e.g., "example.com" or "1.2.3.4:13200"
# Leave empty to auto-detect
AUTOPCR_PUBLIC_ADDRESS=
# Use HTTPS for public access links (true/false)
AUTOPCR_USE_HTTPS=false
# ---- Docker Settings ----
# Host port to map (change if 13200 is occupied)
HOST_PORT=13200
# Container timezone
TZ=Asia/Shanghai
# Restart policy: no | always | on-failure | unless-stopped
RESTART_POLICY=unless-stopped