-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
executable file
·82 lines (65 loc) · 1.85 KB
/
Copy path.env.example
File metadata and controls
executable file
·82 lines (65 loc) · 1.85 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
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
APP_NAME="Backend PHP"
APP_VERSION=1.0.0
APP_ENV=local
APP_DEBUG=true
APP_TIMEZONE=Asia/Jakarta
APP_PORT=8000
APP_DOMAIN=localhost
# APP_DOMAIN=192.168.0.100
APP_URL=http://${APP_DOMAIN}:${APP_PORT}
# APP_URL=https://${APP_DOMAIN}
SERVER_NAME=${APP_DOMAIN}
API_KEY=base64:zjwTis+UxjPt2VhvlqSQoTw1CZuaR0LC8a654X1ofVc=
HASH_KEY=base64:pHELX/GIUhr5w+k3UHe0+k2e9VgVeqOYJNKmaTRmh4Y=
# APP_ENC_ID=false
APP_KEY = base64:1TwfpiRrVh2fFLP+VRJteua59MjJDggqjJoXTqf8b0E=
JWT_SECRET=21dXe982e690e0cw2dMS773dxbTndf$b97c9ec7pP52240A0a815cd6Db81e58ay
SODIUM_KEY=35eb28664db73e33ca501048880f4af3fff5e4cd43d9dd4cfec1934f3d5059c0
SODIUM_PRIVATE_KEY=4342a36ac3c5a52ec13eb6cac00ec519d328b88241c3cf723084ea3baa4bc1e168666b57fd6916ec935dfe75ef23a6d434a1df2064c8f03181b5d6b2f65556f8
SODIUM_PUBLIC_KEY=68666b57fd6916ec935dfe75ef23a6d434a1df2064c8f03181b5d6b2f65556f8
SODIUM_PREFIX=v1.access.microdata
ALLOWED_ORIGIN=*
# ALLOWED_ORIGINS="localhost,demo.test,demo.local,demo.app.com"
# Clients Api Credentials and default setup
CLENT_WEB_API_TOKEN=
# DB_CONNECTION=sqlite
# DB_DATABASE=database.sqlite
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=backend_php
DB_USERNAME=root
DB_PASSWORD=
CACHE_DRIVER=files
# CACHE_DRIVER=redis
# QUEUE_DRIVER=redis
QUEUE_DRIVER=mysql
SESSION_DRIVER=files
# SESSION_DRIVER=redis
SESSION_REGENERATE=300
SESSION_LIFETIME=120
SESSION_ENCRYPT=false
SESSION_PATH=/
SESSION_DOMAIN=null
MEILISEARCH_URL=http://localhost:7700
MEILISEARCH_KEY=ms
MB_CONNECTION=rabbitmq
MB_SCHEME=amqp
# MB_SCHEME=amqps
MB_HOST=127.0.0.1
MB_PORT=5672
MB_USERNAME=guest
MB_PASSWORD=guest
MB_QUEUE_NAME=backend_php-queue
REDIS_CLIENT=phpredis
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
MAIL_MAILER=mailpit
MAIL_SCHEME=null
MAIL_HOST=localhost
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_FROM_ADDRESS="hello@example.com"
MAIL_FROM_NAME="${APP_NAME}"