<?php
/**
* The base configuration for WordPress
*
* The wp-config.php creation script uses this file during the installation.
* You don't have to use the website, you can copy this file to "wp-config.php"
* and fill in the values.
*
* This file contains the following configurations:
*
* * Database settings
* * Secret keys
* * Database table prefix
* * ABSPATH
*
* @link https://developer.wordpress.org/advanced-administration/wordpress/wp-config/
*
* @package WordPress
*/
// ** Database settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define( 'DB_NAME', 'seedvault_local' );
/** Database username */
define( 'DB_USER', 'seedvault' );
/** Database password */
define( 'DB_PASSWORD', 'seedvault_local_pass_2026' );
/** Database hostname */
define( 'DB_HOST', 'localhost' );
/** Database charset to use in creating database tables. */
define( 'DB_CHARSET', 'utf8mb4' );
/** The database collate type. Don't change this if in doubt. */
define( 'DB_COLLATE', '' );
/**#@+
* Authentication unique keys and salts.
*
* Change these to different unique phrases! You can generate these using
* the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}.
*
* You can change these at any point in time to invalidate all existing cookies.
* This will force all users to have to log in again.
*
* @since 2.6.0
*/
define('AUTH_KEY', '=^$ n-[F-{U3f9`)WO7D^X4!E%13cqw+B >QdEQl|la%P==XoM|u+f?^qR/6G~I`');
define('SECURE_AUTH_KEY', 'aM9]s`%ac?HIBiNyMI|DC-0G.[/F`Y-&HbymY{qpSsQORP&K41AxmcG2b^cnIsKj');
define('LOGGED_IN_KEY', '_qAv%!@s`Ip}>2Mgt7NJe-L/v*a0lJ2 DzgF/yi_8KA86HAJN19s^l|p~sQp+V|T');
define('NONCE_KEY', 'l%oP_da|S7-lZrSDU(G=W94y(w1S8*=~zy]W7{8LFFb:<6r%#IVH#.f=|gYct%J~');
define('AUTH_SALT', '4$dm`i| B6ZRpQr{DDT64qKd:GUfRDFb#uBcR]Mh_9yP|}1Ie<{8))*-/KXoe/}}');
define('SECURE_AUTH_SALT', 'mtbA7@lV4TNGH?RcZ}#7!+%ap$yCCCpSqwoum/e;`wP4DQS0,}-}FAhl|[Oc&W2H');
define('LOGGED_IN_SALT', 'GC!]fS@l(aqO=;d.rkhUv6AZmblg1W-:: ^{>{t8c&c-4dj}m.y5~p@OQcOo,HEx');
define('NONCE_SALT', 'Z-Y+-HVR8MLl[MuN+S=voB0b* xt|%Cfd4g*O-YdsS;p^Z,N?t0AZ8:g8kCq|{Y]');
/**#@-*/
/**
* WordPress database table prefix.
*
* You can have multiple installations in one database if you give each
* a unique prefix. Only numbers, letters, and underscores please!
*
* At the installation time, database tables are created with the specified prefix.
* Changing this value after WordPress is installed will make your site think
* it has not been installed.
*
* @link https://developer.wordpress.org/advanced-administration/wordpress/wp-config/#table-prefix
*/
$table_prefix = 'wp_';
/**
* For developers: WordPress debugging mode.
*
* Change this to true to enable the display of notices during development.
* It is strongly recommended that plugin and theme developers use WP_DEBUG
* in their development environments.
*
* For information on other constants that can be used for debugging,
* visit the documentation.
*
* @link https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/
*/
define( 'WP_DEBUG', false );
/* Add any custom values between this line and the "stop editing" line. */
// Dynamic site URL - works from localhost, LAN IP, or Tailscale
if (isset($_SERVER["HTTP_HOST"])) {
$scheme = isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] === "on" ? "https" : "http";
define("WP_HOME", $scheme . "://" . $_SERVER["HTTP_HOST"]);
define("WP_SITEURL", WP_HOME);
}
/* That's all, stop editing! Happy publishing. */
/** Absolute path to the WordPress directory. */
if ( ! defined( 'ABSPATH' ) ) {
define( 'ABSPATH', __DIR__ . '/' );
}
/** Sets up WordPress vars and included files. */
require_once ABSPATH . 'wp-settings.php';