· 4 years ago · Aug 13, 2021, 08:56 PM
1<?php
2define( 'WP_CACHE', true ); // Added by WP Rocket
3
4
5//Begin Really Simple SSL session cookie settings
6@ini_set('session.cookie_httponly', true);
7@ini_set('session.cookie_secure', true);
8@ini_set('session.use_only_cookies', true);
9//END Really Simple SSL
10/**
11 * The base configuration for WordPress
12 *
13 * The wp-config.php creation script uses this file during the
14 * installation. You don't have to use the web site, you can
15 * copy this file to "wp-config.php" and fill in the values.
16 *
17 * This file contains the following configurations:
18 *
19 * * MySQL settings
20 * * Secret keys
21 * * Database table prefix
22 * * ABSPATH
23 *
24 * @link https://wordpress.org/support/article/editing-wp-config-php/
25 *
26 * @package WordPress
27 */
28// ** MySQL settings - You can get this info from your web host ** //
29/** The name of the database for WordPress */
30define( 'DB_NAME', 'saralm_com' );
31/** MySQL database username */
32define( 'DB_USER', 'saralm_comu' );
33/** MySQL database password */
34define( 'DB_PASSWORD', 'bPXE9Czx' );
35/** MySQL hostname */
36define( 'DB_HOST', 'localhost' );
37/** Database Charset to use in creating database tables. */
38define( 'DB_CHARSET', 'utf8mb4' );
39/** The Database Collate type. Don't change this if in doubt. */
40define( 'DB_COLLATE', '' );
41/**#@+
42 * Authentication Unique Keys and Salts.
43 *
44 * Change these to different unique phrases!
45 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
46 * 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.
47 *
48 * @since 2.6.0
49 */
50define( 'AUTH_KEY', '#ac!n>V*h0^oREU2c^Zd0h3:H05 v7I,r~/dsgIjnGcw1v?U6qJwYP>BGs%#Ulgn' );
51define( 'SECURE_AUTH_KEY', '5I`,YMR8JQ^FM$_ 1Kv tGXe17HxLUP!H@LBqOWzy/E /f|lP_#fAMy3=]{QzRx>' );
52define( 'LOGGED_IN_KEY', '22Z2pt))d*td)&)|,k%5gr6Ca7rW9rM]onkd3BPhZH22T 97j&QO%pfPKe$XdX0*' );
53define( 'NONCE_KEY', ' @sLyz~BOLu%e>nI)$p#f>ABL><t%0_ouH$`WE#|>HsgH4CM5%/>YJI(1jx%l{89' );
54define( 'AUTH_SALT', 'T}@aGA.GDmM4gtc0c nqRQA,q!VE(Uc6rD7{RO+]y B|/,O7/IDymqH0|n{$[l8l' );
55define( 'SECURE_AUTH_SALT', 'JN6`!%ek9hr1k1$j*|C*uSVU[%`BaM6Z92!28=#>HyWl*+,<@#S2i^2#FsN{=I12' );
56define( 'LOGGED_IN_SALT', 'PW%^K`&eK0Et!+29Y=bH:i/}aZY-7EV`2a(6yiUT!&x=jJb[px`ezddl%XO0O4U^' );
57define( 'NONCE_SALT', '7eRrWiMY<,{*o,+WJGp3}gq@X[#$2cHAU%j.%/8Q#En(R-oOzc!o9FBk3Jj9[F^V' );
58/**#@-*/
59/**
60 * WordPress Database Table prefix.
61 *
62 * You can have multiple installations in one database if you give each
63 * a unique prefix. Only numbers, letters, and underscores please!
64 */
65$table_prefix = 'wp_';
66/**
67 * For developers: WordPress debugging mode.
68 *
69 * Change this to true to enable the display of notices during development.
70 * It is strongly recommended that plugin and theme developers use WP_DEBUG
71 * in their development environments.
72 *
73 * For information on other constants that can be used for debugging,
74 * visit the documentation.
75 *
76 * @link https://wordpress.org/support/article/debugging-in-wordpress/
77 */
78define( 'WP_DEBUG', false);
79/* That's all, stop editing! Happy publishing. */
80/** Absolute path to the WordPress directory. */
81if ( ! defined( 'ABSPATH' ) ) {
82 define( 'ABSPATH', __DIR__ . '/' );
83}
84/** Sets up WordPress vars and included files. */
85require_once ABSPATH . 'wp-settings.php';
86