Files
old-new-wiaas/environment.env
2018-07-30 16:26:46 +02:00

32 lines
952 B
Bash

# Database config
MYSQL_ROOT_PASSWORD=root
MYSQL_DATABASE=wordpress
MYSQL_USER=wp_admin
MYSQL_PASSWORD=wp_password
API_URL=url
#Wordpress config
# Determines loading of enviroment specific non sensitive wordpress config file (/backend/config/environments/[WP_ENV].php)
# Set this to local only for local wordpress development (it will activate WP_DEBUG, SCRIPT_DEBUG and SAVEQUERIES)
WP_ENV=development
# Required for local wordpress development only for quick override of default db if needed
#WP_DB_HOST=localhost
# Required for local wordpress development since dotenv allows this kind of initialization
# For docker deployment this is done inside docker container
#WP_HOME=${API_URL}
WP_AUTH_KEY=generate_me
WP_SECURE_AUTH_KEY=generate_me
WP_LOGGED_IN_KEY=generate_me
WP_NONCE_KEY=generate_me
WP_AUTH_SALT=generate_me
WP_SECURE_AUTH_SALT=generate_me
WP_LOGGED_IN_SALT=generate_me
WP_NONCE_SALT=generate_me
WP_JWT_AUTH_SECRET_KEY=generate_me