47 lines
1.8 KiB
PHP
47 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* WordPress configuration for the local devenv setup.
|
|
*
|
|
* Tracked in git on purpose: this is a local learning environment,
|
|
* all credentials here are throwaway dev values.
|
|
*/
|
|
|
|
// ** Plugins live in the repo root, outside the WordPress core submodule ** //
|
|
define( 'WP_PLUGIN_DIR', __DIR__ . '/plugins' );
|
|
define( 'WP_PLUGIN_URL', 'http://localhost:8080/plugins' );
|
|
|
|
// ** Database settings (matches services.mysql in devenv.nix) ** //
|
|
define( 'DB_NAME', 'wp' );
|
|
define( 'DB_USER', 'wp' );
|
|
define( 'DB_PASSWORD', 'wp' );
|
|
define( 'DB_HOST', '127.0.0.1' );
|
|
define( 'DB_CHARSET', 'utf8mb4' );
|
|
define( 'DB_COLLATE', '' );
|
|
|
|
/**#@+
|
|
* Authentication unique keys and salts.
|
|
*/
|
|
define( 'AUTH_KEY', '86wUWH4GaRKEb3um2OCG1+IYzgMcYtCsgZIxlDtRsPW0pviesMF5AoIfWSj7+YnZ' );
|
|
define( 'SECURE_AUTH_KEY', '/z7gh8GFhsdnKMSt2tmGmgggiGtsy/IvYXinmE4PIatukxPR/M+5T90oeOdNXW+r' );
|
|
define( 'LOGGED_IN_KEY', 'cjHgRpkOjVwci1f0pKT8uCrnwRq+xwP7X1giPUyoixrqpZ/RJIfGnyTav+6Px5W4' );
|
|
define( 'NONCE_KEY', '9d9koxfp5eyY4UP8Bis3uyjD4ZJ5CZXhnk1Reo90grpq4fvdpu6C5PZiTQY04Zcg' );
|
|
define( 'AUTH_SALT', 'T7FWdS8KrqLKtQ5CzuYy3q4uDyz3qQDvY6XVHT5Te8VCiK0N7eqNDfXPGm73OF0E' );
|
|
define( 'SECURE_AUTH_SALT', 'vKhXxI+TrE/8DxiogbdVO4ZC/Po2f8ijLOgGuQi4TWy8I3AizL1L4H3VABY8aGg5' );
|
|
define( 'LOGGED_IN_SALT', '9ZRBx99oicNodcM9ayUzcr4zuV2w7W/q5EY+Fpa8zrcq8di1LTG1/pwXYnEsHLyZ' );
|
|
define( 'NONCE_SALT', '7U/impFiyFsTQe3WKgiqLjEH33V/i4+kDJKMf5HlTHGnf2TQvBwlnqCg+0KZRXSd' );
|
|
/**#@-*/
|
|
|
|
$table_prefix = 'wp_';
|
|
|
|
define( 'WP_DEBUG', true );
|
|
|
|
/* That's all, stop editing! Happy publishing. */
|
|
|
|
/** Absolute path to the WordPress directory. */
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
define( 'ABSPATH', __DIR__ . '/WordPress/' );
|
|
}
|
|
|
|
/** Sets up WordPress vars and included files. */
|
|
require_once ABSPATH . 'wp-settings.php';
|