f0ca867605
- Remove wp-config.php from tracking (contains secrets) - Add wp-config.php.dist as template for new installs 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
50 lines
1.8 KiB
Plaintext
Executable File
50 lines
1.8 KiB
Plaintext
Executable File
<?php
|
|
/**
|
|
* WordPress Configuration - HomePROZ
|
|
*/
|
|
|
|
// Database settings
|
|
define( 'DB_NAME', 'wordpress' );
|
|
define( 'DB_USER', 'wordpress' );
|
|
define( 'DB_PASSWORD', 'wordpress' );
|
|
define( 'DB_HOST', 'localhost' );
|
|
define( 'DB_CHARSET', 'utf8mb4' );
|
|
define( 'DB_COLLATE', '' );
|
|
|
|
// Authentication keys and salts
|
|
define('AUTH_KEY', 'MU- |{TD.F<`*hB6sS&[3+k9a-]G}+icDzb#/+|-#M?vB_%~e+3vuy^NbKTJYdXU');
|
|
define('SECURE_AUTH_KEY', '&J)p#B_JOu5,o{0kMK?;lB,{7bUV.yc22h8^{1}xzcGe^}qFr<b<Q^Lj$kKJ^#rY');
|
|
define('LOGGED_IN_KEY', '-fKNKK8qgG34jGrrfnZv+f>=VR9wV ~JyBf$@?+K&,S94&*bU+ MCa>cl*$ke0YD');
|
|
define('NONCE_KEY', '>6PWKB<Cl3hT[r;8@)ke_#uj:BPg_AE?spsI?J(M3m0#4{?WTb=H_|JtZ2pb5U^8');
|
|
define('AUTH_SALT', 'W<+%_rW`IeOw+lvku4EH$QcAg!xfDgQ*/!<g:?D.3&H~b@5SmKyc*E=Yv^g$Qi+H');
|
|
define('SECURE_AUTH_SALT', 'OKzc<U5V4,R2aJWFL=gq5`%/|Qc&@Q]s,GC/Q>C+:Dap*;C4Wl|#&_(BuXrYT{C:');
|
|
define('LOGGED_IN_SALT', 'R8I1ORa[mZ D,xl-F7**K<VTD5S8>~vM@{*PkPFn=b%i Y8H+1;iL1C4vN)T/P%p');
|
|
define('NONCE_SALT', '^;h{cx}%?JBLzzbE|{=h5C#md*rNUh|IFv}C%C#Kf}n(5.NEs[Sd9d|wDv=a%}uW');
|
|
|
|
// Database table prefix
|
|
$table_prefix = 'wp_';
|
|
|
|
// Debug mode - enable for development
|
|
define( 'WP_DEBUG', true );
|
|
define( 'WP_DEBUG_LOG', true );
|
|
define( 'WP_DEBUG_DISPLAY', false );
|
|
|
|
// Site URL (adjust as needed)
|
|
define( 'WP_HOME', 'https://' . gethostname() );
|
|
define( 'WP_SITEURL', 'https://' . gethostname() );
|
|
|
|
// Disable file editing in admin
|
|
define( 'DISALLOW_FILE_EDIT', true );
|
|
|
|
// MLS Grid API
|
|
define( 'MLSGRID_API_URL', 'https://api.mlsgrid.com/v2' );
|
|
define( 'MLSGRID_ACCESS_TOKEN', 'a31f081a84c743218fce45e72e7000f89c097606' );
|
|
|
|
// Absolute path to WordPress directory
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
define( 'ABSPATH', __DIR__ . '/' );
|
|
}
|
|
|
|
// Load WordPress
|
|
require_once ABSPATH . 'wp-settings.php';
|