-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.example
69 lines (48 loc) · 1.74 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
58
59
60
61
62
63
64
65
66
67
68
69
# if not set defaults to 24
SESSION_TTL_HOURS="24"
# required
# https://www.php.net/manual/en/timezones.php
TIME_ZONE="America/New_York"
# required
DOMAIN_NAME="example.com"
# if not set, defaults to DOMAIN_NAME
HOSTNAME="localhost"
# if not set, defaults to empty string
# could be www, if it is, it will redirect blank subdomain requests to www
SUBDOMAIN=""
# required
BUSINESS_NAME="Example Company, LLC"
# the informal business name
BUSINESS_DBA="Example Company"
# required. [0 = false (development), 1 = true (production)]
IS_LIVE=0
# required. see https://secure.php.net/manual/en/function.pg-connect.php
POSTGRES_CONNECTION_STRING="dbname= user= password= host= port= connect_timeout="
PATH_TO_PHP="/usr/bin/php"
PATH_TO_WWW="path on server to public directory"
PATH_TO_SCRIPTS="path on server to cliScripts directory"
## error handling settings
# required. controls whether errors will be echoed in development environments. required. [0 = false, 1 = true]
ERRORS_ECHO_DEV=1
# required. controls whether errors will be emailed in development environments. required. [0 = false, 1 = true]
ERRORS_EMAIL_DEV=1
## email settings
#[leave blank to disable emailing, or: smtp, sendmail, mail, qmail]
PHPMAILER_PROTOCOL=""
# required if smtp protocol
PHPMAILER_SMTP_HOST=""
# required if smtp protocol. must be integer
PHPMAILER_SMTP_PORT=""
# required if smtp protocol
PHPMAILER_SMTP_USERNAME=""
# required if smtp protocol
PHPMAILER_SMTP_PASSWORD=""
# required
EMAIL_DEFAULT_RETURN_PATH=""
#required
DEFAULT_FROM_EMAIL=""
DEFAULT_FROM_NAME=""
## emails [translated to arrays, separate multiple values with commas]
# when adding other types below, it will also need to be added to the $envArrays key in SlimAdmin.php
EMAILS_OWNER=""
EMAILS_PROGRAMMER=""