-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.test
50 lines (39 loc) · 1.35 KB
/
.env.test
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
# encryption secret token (use for database, cookie & session encryption)
APP_SECRET=6394d1cfb05a2cbd8b082715af63d5eb
# define trusted domain names
TRUSTED_HOSTS=^.*$
# check if session running on ssl (security middleware)
SSL_ONLY=false
# maintenance mode config
MAINTENANCE_MODE=false
# enable pwa (progressive web app)
PWA_APP_SUPPORT=false
# contact info
INSTAGRAM_LINK=https://www.instagram.com/lukasbecvar99
LINKEDIN_LINK=https://www.linkedin.com/in/becvar-lukas
TELEGRAM_LINK=https://t.me/lukasbecvar
TWITTER_LINK=https://twitter.com/lukasbecvar
GITHUB_LINK=https://github.com/lukasbecvar
# limit items per page (pagination)
ITEMS_PER_PAGE=10
# enable save logs to log table in database
ANTI_LOG_COOKIE=Xzhm9UGEee58xTAlEcOz
LOGS_ENABLED=true
LOG_LEVEL=3 # (min: 1, max:3)
# external log config
EXTERNAL_LOG_ENABLED=false
EXTERNAL_LOG_URL=https://admin.becvar.xyz/api/external/log
EXTERNAL_LOG_TOKEN=external-api-token
# enable metrics exporter
METRICS_EXPORTER_ENABLED=true
METRICS_EXPORTER_ALLOWED_IP=172.18.0.1 # IP address with access to metrics (use % for all addresses)
# geolocation api url (for visitors geolocate by ip)
GEOLOCATION_API_URL=http://ip-api.com
# database config
DATABASE_DRIVER=pdo_mysql
DATABASE_HOST=127.0.0.1
DATABASE_PORT=3306
DATABASE_NAME=becvar_site_test
DATABASE_USERNAME=root
DATABASE_PASSWORD=root