-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
26 lines (22 loc) · 798 Bytes
/
.env.example
File metadata and controls
26 lines (22 loc) · 798 Bytes
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
DB_NAME=wordpress-starter-template
DB_USER=root
DB_PASSWORD=password
# Optionally, you can use a data source name (DSN)
# When using a DSN, you can remove the DB_NAME, DB_USER, DB_PASSWORD, and DB_HOST variables
# DATABASE_URL='mysql://database_user:database_password@database_host:database_port/database_name'
DB_HOST=mysql
DB_PREFIX=wp_
# Make sure that WP_HOME url does not have a trailing slash after it
WP_ENV='development'
WP_HOME='http://localhost:8082'
WP_SITEURL="${WP_HOME}/wp"
WP_DEBUG_LOG=/var/www/html/web/app/debug.log
# Generate your keys here: https://roots.io/salts.html
AUTH_KEY='generateme'
SECURE_AUTH_KEY='generateme'
LOGGED_IN_KEY='generateme'
NONCE_KEY='generateme'
AUTH_SALT='generateme'
SECURE_AUTH_SALT='generateme'
LOGGED_IN_SALT='generateme'
NONCE_SALT='generateme'