Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Jeff Balicki
/
st_joseph
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
48ea2d71
authored
2023-02-07 14:15:20 -0500
by
Jeff Balicki
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
xxx
Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent
73b5b0ee
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
121 additions
and
0 deletions
wp-config.php
wp-config.php
0 → 100644
View file @
48ea2d7
<?php
define
(
'WP_CACHE'
,
true
);
// Added by Speed Booster Pack
/**
* 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://codex.wordpress.org/Editing_wp-config.php
*
* @package WordPress
*/
require_once
__DIR__
.
'/vendor/autoload.php'
;
Dotenv
::
load
(
__DIR__
);
Dotenv
::
required
([
'DB_HOST'
,
'DB_NAME'
,
'DB_USER'
,
'DB_PASS'
]);
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define
(
'DB_NAME'
,
$_ENV
[
'DB_NAME'
]);
/** MySQL database username */
define
(
'DB_USER'
,
$_ENV
[
'DB_USER'
]);
/** MySQL database password */
define
(
'DB_PASSWORD'
,
$_ENV
[
'DB_PASS'
]);
/** MySQL hostname */
define
(
'DB_HOST'
,
$_ENV
[
'DB_HOST'
]);
/** 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
(
'WP_MEMORY_LIMIT'
,
'512M'
);
define
(
'ALTERNATE_WP_CRON'
,
$_ENV
[
'ALTERNATE_WP_CRON'
]);
define
(
'DISABLE_WP_CRON'
,
'true'
);
define
(
'WP_CACHE'
,
true
);
define
(
'WPCACHEHOME'
,
__DIR__
.
'/wp-content/plugins/wp-super-cache/'
);
define
(
'ALLOW_UNFILTERED_UPLOADS'
,
true
);
@
ini_set
(
'memory_limit'
,
'1000M'
);
@
ini_set
(
'upload_max_size'
,
'1000M'
);
@
ini_set
(
'post_max_size'
,
'1000M'
);
@
ini_set
(
'max_execution_time'
,
'300'
);
define
(
'WP_MAX_MEMORY_LIMIT'
,
'1000M'
);
/**#@+
* 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'
,
'put your unique phrase here'
);
define
(
'SECURE_AUTH_KEY'
,
'put your unique phrase here'
);
define
(
'LOGGED_IN_KEY'
,
'put your unique phrase here'
);
define
(
'NONCE_KEY'
,
'put your unique phrase here'
);
define
(
'AUTH_SALT'
,
'put your unique phrase here'
);
define
(
'SECURE_AUTH_SALT'
,
'put your unique phrase here'
);
define
(
'LOGGED_IN_SALT'
,
'put your unique phrase here'
);
define
(
'NONCE_SALT'
,
'put your unique phrase here'
);
/**#@-*/
/**
* 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 Codex.
*
* @link https://codex.wordpress.org/Debugging_in_WordPress
*/
define
(
'WP_DEBUG'
,
false
);
define
(
'WFWAF_LOG_FILE_MODE'
,
0777
);
/* That's all, stop editing! Happy blogging. */
/** 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'
;
Please
register
or
sign in
to post a comment