diff options
author | Daniel Weipert <code@drogueronin.de> | 2021-01-17 16:24:55 +0100 |
---|---|---|
committer | Daniel Weipert <code@drogueronin.de> | 2021-01-17 16:24:55 +0100 |
commit | 87544b9bb9b7bb169fb5691808e438ab16a5b509 (patch) | |
tree | c333ea95832404bc8b7b0477c347fc20236bc4d8 /wp-config.example.php |
Initial commit
Diffstat (limited to 'wp-config.example.php')
-rw-r--r-- | wp-config.example.php | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/wp-config.example.php b/wp-config.example.php new file mode 100644 index 0000000..7003c2e --- /dev/null +++ b/wp-config.example.php @@ -0,0 +1,46 @@ +<?php + +define('WP_ENVIRONMENT_TYPE', 'production'); + +#define('WP_HOME', 'http://localhost'); + +define('DB_NAME', 'database_name_here'); +define('DB_USER', 'username_here'); +define('DB_PASSWORD', 'password_here'); +define('DB_HOST', 'localhost'); +define('DB_CHARSET', 'utf8mb4'); +define('DB_COLLATE', ''); +$table_prefix = 'wp_'; + +define('AUTH_KEY', 'put your unique phrase here'); +define('SECURE_AUTH_KEY', 'put your unique phrase here'); +define('LOGGED_IN_KEY', 'put your unique phrase here'); +define('NONCE_KEY', 'put your unique phrase here'); +define('AUTH_SALT', 'put your unique phrase here'); +define('SECURE_AUTH_SALT', 'put your unique phrase here'); +define('LOGGED_IN_SALT', 'put your unique phrase here'); +define('NONCE_SALT', 'put your unique phrase here'); + +define('DISALLOW_FILE_EDIT', true); +define('WP_POST_REVISIONS', -1); +define('EMPTY_TRASH_DAYS', 3650); + +if (WP_ENVIRONMENT_TYPE === 'development') { + define('WP_DEBUG', true); + define('SAVEQUERIES', true); + define('SCRIPT_DEBUG', true); + define('WP_DEBUG_DISPLAY', true); + define('WP_DEBUG_LOG', true); +} else { + ini_set('display_errors', 0); + define('WP_DEBUG_DISPLAY', false); + define('SCRIPT_DEBUG', false); + define('DISALLOW_FILE_MODS', true); +} + +if (! defined('ABSPATH')) { + define('ABSPATH', __DIR__ . '/public/'); +} + +require_once __DIR__ . '/vendor/autoload.php'; +require_once ABSPATH . 'wp-settings.php'; |