Files
tysweld.com/wp-config.php
2025-02-24 22:33:42 +01:00

81 lines
3.3 KiB
PHP

<?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', "tysweld_db" );
/** Database username */
define( 'DB_USER', "tysweld_www" );
/** Database password */
define( 'DB_PASSWORD', "123TysweldWWW!" );
/** Database hostname */
define( 'DB_HOST', "mysql02.tishost2016.beep.pl" );
/** 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', '(ta)_ M]YC**v=tk>Oc|^phF7)+-r*)c9HF]WX=U)3626KwGI[c(^b?/!#D|>wZu' );
define( 'SECURE_AUTH_KEY', 'v5;ge>!yo6raH# ztn#/HH)0LIr0ugLTA^AgFW^hW(}LdO%-Nz){_^JXedr_+#4$' );
define( 'LOGGED_IN_KEY', ',A9}LAz=~Y?UFFKd:v>G0rQVksaeY3{8cfHye={:aXl_c^nj?c}xe#J3i4u7eS-0' );
define( 'NONCE_KEY', 'Q0~GkBr$AwRn:^Fd:[LEXyx.HG1v+40Sq`#oZ-oX$ahFV7Mycz(_[D3tXl+b df.' );
define( 'AUTH_SALT', 'kV9^/GqGLtVAkZ@pq~m<{-^dh5GS^XcSgo@q1M9L{,=q3<|*5t|Gu?BA{%l@!%RN' );
define( 'SECURE_AUTH_SALT', 'dxa_8F9o&5`^xQHp`oYG4h@3IpAF]aFL*4otTgI,4<+2Jd3:CDq@)?>:/D$%BYK?' );
define( 'LOGGED_IN_SALT', ']&=WW_FF-owzvg7pW&kxh6}1rF@SQ!{-]k&F8JCpV=1rY3Y}/2u/8#@!;y2Gmd}%' );
define( 'NONCE_SALT', 'EI`.@,Yy^8!LwH^sMJlbd}L-qzT#SV~qahkGpD}y(z!dlo @>h8PvBmDF^-NCxYK' );
/**#@-*/
/**
* 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!
*/
$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. */
define( 'DUPLICATOR_AUTH_KEY', ')@bM&c#)Me#kvD}!ZQ?H1.c+}1sL(tG~ $f0#z0h:=Wi^S{uo}_o*_wZQ+S_H[mx' );
/* That's all, stop editing! Happy publishing. */
/** Absolute path to the WordPress directory. */
if ( ! defined( 'ABSPATH' ) ) {
define( 'ABSPATH', dirname(__FILE__) . '/' );
}
/** Sets up WordPress vars and included files. */
require_once ABSPATH . 'wp-settings.php';