-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env
60 lines (50 loc) · 1.45 KB
/
.env
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
APP_NAME="OpenXDAGPool"
APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_LOG_LEVEL=debug
APP_URL=http://127.0.0.1
# %s replaces XDAG address (urlencoded)
BALANCE_CHECKER_URL="http://ourpool.local?a=%s"
# one of "realtime", "averaging1" (best results), "averaging2"
# see app/Miners/Miner.php for comments on various algorithms
HASHRATE_ALGORITHM=averaging1
# when the path begins with ./, base_path() is applied whenever the value is used
MINERS=./storage/miners.txt
STATS=./storage/stats.txt
PAYOUTS=./storage/payouts.txt
# when the path begins with ./, base_path() is applied and the file is copied. If the path begins with http:// or https://, wget is called
DOWNLOAD_MINERS=./storage/pooldata/miners.txt
DOWNLOAD_STATS=./storage/pooldata/stats.txt
DOWNLOAD_PAYOUTS=./storage/pooldata/payouts.txt
# set path to system programs properly, issue `which cp` and `which wget`
CP_EXECUTABLE=/bin/cp
WGET_EXECUTABLE=/usr/bin/wget
DB_CONNECTION=mysql
DB_HOST=mysql
DB_PORT=3306
DB_DATABASE=xdag
DB_USERNAME=xdagmgr
DB_PASSWORD=Xdag@2018
BROADCAST_DRIVER=log
CACHE_DRIVER=file
SESSION_DRIVER=file
SESSION_LIFETIME=120
QUEUE_DRIVER=sync
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
MAIL_DRIVER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS=
MAIL_FROM_NAME="OpenXDAGPool"
MAIL_REPLY_ADDRESS=
MAIL_REPLY_NAME="OpenXDAGPool support"
PUSHER_APP_ID=
PUSHER_APP_KEY=
PUSHER_APP_SECRET=
PUSHER_APP_CLUSTER=mt1