Files
doitinpoland.com/wp-config.php
Roman Pyrih 7175b922e1 Save
2024-09-27 11:57:15 +02:00

87 lines
3.3 KiB
PHP

<?php
//Begin Really Simple SSL session cookie settings
@ini_set('session.cookie_httponly', true);
@ini_set('session.cookie_secure', true);
@ini_set('session.use_only_cookies', true);
//END Really Simple SSL cookie settings
define( 'WP_CACHE', true );
/**
* The base configuration for WordPress
*
* The wp-config.php creation script uses this file during the
* installation. You don't have to use the web site, you can
* copy this file to "wp-config.php" and fill in the values.
*
* This file contains the following configurations:
*
* * MySQL settings
* * Secret keys
* * Database table prefix
* * ABSPATH
*
* @link https://wordpress.org/support/article/editing-wp-config-php/
*
* @package WordPress
*/
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define( 'DB_NAME', 'host774759_doitinpoland' );
/** MySQL database username */
define( 'DB_USER', 'host774759_doitinpoland' );
/** MySQL database password */
define( 'DB_PASSWORD', 'beNdXEaqeJW6ubx4p4ZX' );
/** MySQL 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', '' );
define( 'CONCATENATE_SCRIPTS', false );
/**#@+
* 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', '7D=J|_^eM)*>?:UVL.Xe7L|V5!~B0EXpt>@I-<R{@)b({xiP6VeND1Ql_hDC[E$V' );
define( 'SECURE_AUTH_KEY', '2_KhK<h{S$Tb?Jlt65Q-4Z FiKN#.>eQI<2nebD[y<eKfJs(&|SUDpMPT!$bFpXT' );
define( 'LOGGED_IN_KEY', '^Seu{uQZ/.$Wx&DVB3~y%4TE|jA,is0RJz7,$Cf)2an{LK1|;(nlx,iU mM@glDO' );
define( 'NONCE_KEY', '!lf|!qeiBXNQPPkw|`.p74+-^.FV #:JdlI=]/6/T)iSlI|yi:3@fj]H8d#=6g]5' );
define( 'AUTH_SALT', 'o3{HP6*}O.mwD&BC:osf)Yf#6nR4L<zJ_(AG85mW1n/xZ;U;r&wj5v@@d(y={8p7' );
define( 'SECURE_AUTH_SALT', 'viLPdg^S{a`<uP9wD^`mX#2v-u;cZYw8<Pl_I@O:Va8>-0r9Pi1~@z0PX3Nk>6;%' );
define( 'LOGGED_IN_SALT', '`}E0{&sW:-nb;)F!RN#uLmA&#Hp1wbK>~E?+rSx1B{YDGj?cr}*y|p.hfs`K5@n ' );
define( 'NONCE_SALT', '~q2v`E]Jp5yLe}:Zt#^Ln<BlA&q+F%$64xd}Z%~4#eL|gS`S5{3bXT)0Wq7hE7Pl' );
/**#@-*/
/**
* 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://wordpress.org/support/article/debugging-in-wordpress/
*/
define( 'WP_DEBUG', false );
/* 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';