-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
63 lines (45 loc) · 1.44 KB
/
.env.example
File metadata and controls
63 lines (45 loc) · 1.44 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
# Docker Settings
## Misc
PROJECT_ROOT="/var/www/html"
DOC_ROOT="/var/www/html/public"
## NGINX
NGINX_PORT_HOST="80"
## Apache
APACHE_PORT_HOST="7080"
## PHP
PHP_VERSION="8.0"
PHP_DEVELOPMENT="0"
PHP_XDEBUG_KEY="PHPSTORM"
## MySQL
MYSQL_VERSION="10.5"
MYSQL_ROOT_PASSWORD="root"
DB_HOST="mysql"
## Node
NODE_VERSION="lts"
NODE_ENV="development"
## Mailhog
MAILHOG_SMTP_PORT_HOST="1025"
MAILHOG_WEB_PORT_HOST="8025"
# The environment Craft is currently running in ("dev", "staging", "production", etc.)
ENVIRONMENT="dev"
# The application ID used to to uniquely store session and cache data, mutex locks, and more
APP_ID="CraftCMS--085c8ba6-431b-4d16-9331-e5655f322b43"
# The secure key Craft will use for hashing and encrypting data
SECURITY_KEY="ZtYzp4Yx2y2TDh7rY8asTdnCjgY70KUY"
# The Data Source Name (“DSN”) that tells Craft how to connect to the database
DB_DSN="mysql:host=127.0.0.1;port=3306;dbname=craft;"
# The port to connect to the database with
DB_PORT="3306"
# The name of the database to select
DB_DATABASE="craft"
# The database username to connect with
DB_USER="craft"
# The database password to connect with
DB_PASSWORD="craft"
# The database schema that will be used (PostgreSQL only)
DB_SCHEMA=""
# The prefix that should be added to generated table names (only necessary if multiple things are sharing the same database)
DB_TABLE_PREFIX=""
# The code to connect the project to sentry
SENTRY_DSN=""
DEFAULT_SITE_URL="http://craft.test"