-
Notifications
You must be signed in to change notification settings - Fork 37
/
.env.example
93 lines (80 loc) · 2.92 KB
/
.env.example
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
###########################################################
# Environment
###########################################################
# drives the behavior of the akk-stack environment
# eg. what images get built, used etc.
# options [development, production]
# default [production]
ENV=production
# enables spire development features
SPIRE_DEV=false
###########################################################
# Services
###########################################################
# enables the services to be started
ENABLE_BACKUP_CRON=false
ENABLE_FTP_QUESTS=false
ENABLE_PEQ_EDITOR=false
ENABLE_PHPMYADMIN=false
###########################################################
# Drivers
###########################################################
VOLUMES_DRIVER=local
NETWORKS_DRIVER=bridge
###########################################################
# MySQL
###########################################################
MARIADB_DATABASE=peq
MARIADB_USER=eqemu
MARIADB_PASSWORD=<template>
MARIADB_PORT=3306
MARIADB_ROOT_PASSWORD=<template>
DATA_PATH_HOST=./data
# INNODB_BUFFER_POOL_SIZE=256MB
###########################################################
# Server
###########################################################
SERVER_PUID=1000
SERVER_PGID=1000
SERVER_TIMEZONE=UTC
SERVER_SSH_PORT=2222
SERVER_PASSWORD=<template>
###########################################################
# phpmyadmin
###########################################################
PHPMYADMIN_USERNAME=admin
PHPMYADMIN_PASSWORD=<template>
###########################################################
# spire admin
###########################################################
SPIRE_ADMIN_PASSWORD=<template>
SPIRE_PORT=3000
###########################################################
# peqeditor
###########################################################
PEQ_EDITOR_PASSWORD=<template>
###########################################################
# ftp
###########################################################
FTP_QUESTS_PASSWORD=<template>
###########################################################
# Other settings
###########################################################
IP_ADDRESS=0.0.0.0
###########################################################
# Zone count you want to support: zones + 7000
###########################################################
PORT_RANGE_HIGH=7030
###########################################################
# Timezone
###########################################################
TZ=US/Central
###########################################################
# Dropbox backups (optional)
###########################################################
# DEPLOYMENT_NAME=peq-production (used in backup names)
# BACKUP_RETENTION_DAYS_DB_SNAPSHOTS=10
# BACKUP_RETENTION_DAYS_DEPLOYMENT=35
# BACKUP_RETENTION_DAYS_QUEST_SNAPSHOTS=7
# Below is two days worth of hourly snapshots (if this isn't set, the hourly snapshots will be disabled)
# BACKUP_RETENTION_HOURLY_PLAYER_DB_SNAPSHOTS=48