14 lines
438 B
PHP
14 lines
438 B
PHP
<?php
|
|
# Created by setup-mysql
|
|
define('DB_NAME', 'woody');
|
|
define('DB_USER', 'woody');
|
|
define('DB_PASSWORD', '{{ pillar['mariadb']['woody_pw'] }}');
|
|
define('DB_HOST', 'localhost');
|
|
define('DB_CHARSET', 'utf8');
|
|
define('DB_COLLATE', '');
|
|
define('SECRET_KEY', '{{ pillar['wordpress']['woody_key'] }}');
|
|
define('WP_CONTENT_DIR', '/var/lib/wordpress/wp-content-cowboybuilder');
|
|
define( 'FS_METHOD', 'direct' );
|
|
define('WPLANG', 'en_GB');
|
|
?>
|