-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
56 lines (42 loc) · 1.2 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
# Environment configuration (development, production)
# IF development
# Activate Debug messages
ENVIRONMENT=development
###############################
# Database configuration
###############################
DB_NAME=your_database_name
DB_USER=your_database_user
DB_PASSWORD=your_database_password
DB_HOST=your_localhost
DB_PREFIX=your_wp_
DB_CHARSET=your_charset
ENVIRONMENT=your_current_environment
###############################
# Site configuration
###############################
WP_HOME=https://www.example.com
WP_SITEURL=https://www.example.com
###############################
# Trash configuration
###############################
EMPTY_TRASH_DAYS=7
###############################
# PHP configuration
###############################
WP_MEMORY_LIMIT=64M
###############################
# PHP auth_config
###############################
DB_AUTH_KEY=your_auth_key
DB_SECURE_AUTH_KEY=your_secure_auth_key
DB_LOGGED_IN_KEY=your_logged_in_key
DB_NONCE_KEY=your_nonce_key
DB_AUTH_SALT=your_auth_salt
DB_SECURE_AUTH_SALT=your_secure_auth_salt
DB_LOGGED_IN_SALT=your_logged_in_salt
DB_NONCE_SALT=your_nonce_salt
###############################
# PHP wp_debug mode
###############################
WP_DEBUG=false