forked from ccarney16/pterodactyl-containers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
57 lines (45 loc) · 1.43 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
##
# Pterodactyl Container Variables
#
# DO NOT OVERWRITE WITH PTERODACTYL ".env" CONFIGURATIONS!
# This configuration may look like it has pterodactyl
# variables, and it does, however this config also contains
# variables to initialize/setup the containers. If you are migrating
# or planning to use /data/pterodactyl.conf for all your variables,
# remove anything after "panel variables" stated.
##
# MySQL Settings, These can be deleted if you don't use the mysql service within docker-compose.yml
MYSQL_ROOT_PASSWORD=apassword
MYSQL_DATABASE=pterodactyl
MYSQL_USER=ptero
MYSQL_PASSWORD=pterodbpass
##
# Container Variables
##
SSL=false
SSL_CERT="/etc/certs/cert.pem"
SSL_CERT_KEY="/etc/certs/cert.key"
# Disable's runtime workers & cronjob (this is useful if you want to run these in another container)
DISABLE_WORKERS=false
##
# Panel Variables
# These variables can be used within pterodactyl.conf (.env when symlinked
# into the docker webroot). These variables are also set via pterodactyl:env
# and pterodactyl:mail.
##
APP_URL=http://localhost/
TIMEZONE=UTC
CACHE_DRIVER=memcached
# Rely on an external source so we can put the panel container down when updates are needed
REDIS_HOST=cache
REDIS_PORT=6379
DB_HOST=mysql
DB_PORT=3306
DB_DATABASE=pterodactyl
DB_USERNAME=ptero
DB_PASSWORD=pterodbpass
MAIL_DRIVER=mail
MAIL_FROM=admin@localhost
MAIL_FROM_NAME="Pterodactyl Panel"
DOCKER_ROOT=/var/lib/docker
DOCKER_SOCKET=/var/run/docker.sock