-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.default
More file actions
49 lines (44 loc) · 1.58 KB
/
Copy path.env.default
File metadata and controls
49 lines (44 loc) · 1.58 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
43
44
45
46
47
48
49
# ======================================
# Database #
# ======================================
DB_HOST=gamecubby-db
DB_PORT=5432
DB_NAME=gamecubby
DB_USER=gamecubby
DB_PASSWORD=gamecubby
# ======================================
# Database Maintenance Role #
# ======================================
# Used for backup and restore
# Please use a better password but
# ideally no special characters.
MAINT_DB_USER=gc_maint
MAINT_DB_PASSWORD=change-me-strong
# ======================================
# Maintenance/Backups paths #
# ======================================
# These paths exist inside the containers
# and are bind-mounted from the host
# Don't change unless you know what you are doing
GC_MAINT_FILE=/storage/maintenance.json
GC_BACKUPS_DIR=/storage/backups
# ======================================
# Auto-backup scheduling and Cleanup #
# ======================================
# This is in UTC
AUTOBACKUPS=yes
CLEAR_MANUAL_BACKUPS=no
BACKUP_RETENTION_DAYS=14
BACKUP_TIME=03:00
# ======================================
# Reverse Proxy (NGINX, HAProxy etc) #
# ======================================
# PROXY=true: Always secure cookes, use this if you are behind a proxy with SSL.
# If you set that true and access IP:PORT over HTTP your login will not work.
# PROXY=false: Only secure over HTTPS. Use this if you are accessing GC by IP:PORT
PROXY=false
# ======================================
# Web Port #
# ======================================
# Change this to access your WebUI via different port.
WEB_PORT=3000