-
Notifications
You must be signed in to change notification settings - Fork 325
Expand file tree
/
Copy path.env
More file actions
executable file
·47 lines (40 loc) · 1.61 KB
/
.env
File metadata and controls
executable file
·47 lines (40 loc) · 1.61 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
# current environemnt
APP_ENV=prod
# collect/show additional debugging data
APP_DEBUG=false
# disable certain functionallity for the demo version
APP_DEMO=false
# turns small bar with information about maintenance
APP_MAINTENANCE=false
# Services variables
## mailing settings
MAILER_DSN=smtp://pms-mail:1025?verify_peer=0
## database connection setting
DATABASE_URL=mysql://root:password@pms-database-mariadb/pms
# Modules based variables
## Storage
### the name of the upload directory for upload modules (in the /public dir)
UPLOAD_DIR=upload
### name of the directory for MyImages module
IMAGES_UPLOAD_DIR=upload/images
### name of the directory for MyFiles module
FILES_UPLOAD_DIR=upload/files
### name of the directory for MyVideo module
VIDEOS_UPLOAD_DIR=upload/videos
### name of the directory for generating/storing miniatrures for MyImages module
MINIATURES_UPLOAD_DIR=upload/miniatures
### this is the name of `public` dir and should not be changed
PUBLIC_ROOT_DIR=public
# Security based variables
##restrict access to the project only by given ips -> Example (exactly this way): [\"127.0.0.1\",\"192.168.10.1\"] (without spacebars)
APP_IPS_ACCESS_RESTRICTION="[]"
# Monitoring based variables
## emergency emails are sent to this address
APP_EMERGENCY_EMAILS_RECEIVER_EMAIL="your@email.com"
# Symfony auto generated variables
## jwt
APP_SECRET=384b043b67a4f1431eef6b2f6e50b2cb
# External Services (You need to self host these
## Notifier Proxy Logger
### default receiver of emails transfered to NPL -> Example (exactly this way): [\"your@email.com\", \"mail@email.com\"]
APP_DEFAULT_NPL_RECEIVER_EMAILS=[\"your@email.com\"]