cfg1
<?php
/**
* Custom WordPress configurations on "wp-config.php" file.
*
* This file has the following configurations: MySQL settings, Table Prefix, Secret Keys, WordPress Language, ABSPATH and more.
* For more information visit {@link https://codex.wordpress.org/Editing_wp-config.php Editing wp-config.php} Codex page.
* Created using {@link http://generatewp.com/wp-config/ wp-config.php File Generator} on GenerateWP.com.
*
* @package WordPress
* @generator GenerateWP.com
*/
/* MySQL settings */
define( 'DB_NAME', 'database_name_here' );
define( 'DB_USER', 'username_here' );
define( 'DB_PASSWORD', 'password_here' );
define( 'DB_HOST', 'localhost' );
define( 'DB_CHARSET', 'utf8mb4' );
/* MySQL database table prefix. */
$table_prefix = 'wp_';
define( 'CUSTOM_USER_TABLE', $table_prefix . 'wp_user' );
define( 'CUSTOM_USER_META_TABLE', $table_prefix . 'wp_user' );
/* Authentication Unique Keys and Salts. */
define('AUTH_KEY', 'p4ziG`Ja#ZD+F4|q#vbrC,Px7X{qxJ@p4ujqGW>?}&xGEl?6klH}lVA6b]P]#[p3');
define('SECURE_AUTH_KEY', '~+z72K&f&$Iuk;1]IcF!0(-N:V/&+A~51[$w5IZQ7$.S`+A9]l&t#4]{:PtOv:M6');
define('LOGGED_IN_KEY', '@/-9Vv{!q3[^]j&{HfAx&F2 rXV[03,x+IEr+V-;_T6Aku/-,Ip@`XH-Y9L$D[_2');
define('NONCE_KEY', 'o5[9iT4Z_ZYj5rF(?*FEi]-Ys%*>59T!wT8tQ;[8J*z?ye{L38!DnC( C_Uf}lMq');
define('AUTH_SALT', 'vARwfbS0rA,G^$Z>o3S,++~bT: RL4,`u~#^o^V.d?^=-i0:K=F;?~Ys^6#u916r');
define('SECURE_AUTH_SALT', 'Vs{t>dD/04-&oXa/3=}e{C/gDmbBQW5QWBH7J)DS#(T[W;h$8B(E6EyDD/|_08`c');
define('LOGGED_IN_SALT', '5|P3v(;!$p#sz9CYcZl4@EX3$:)$R^y`6|gQW++{w|t2=;4[)KjClq:fp|h#P-|i');
define('NONCE_SALT', '`M!JVh=%94 lIIKJx|[Z5xz.?8L?whz)#+KkQ/w6`S{#I8vsmtXpQxH_~AG[_GbM');
/* SSL */
define( 'FORCE_SSL_LOGIN', true );
define( 'FORCE_SSL_ADMIN', true );
/* Custom WordPress URL. */
define( 'WP_SITEURL', 'http://greenline.masternet.pl/' );
define( 'WP_HOME', 'http://greenline.masternet.pl/' );
define( 'WP_CONTENT_URL', 'http://greenline.masternet.pl/greenline/wp-content' );
define( 'UPLOADS', 'http://greenline.masternet.pl/' );
define( 'WP_PLUGIN_URL', 'http://greenline.masternet.pl/wp-content/plugins' );
/* AutoSave Interval. */
define( 'AUTOSAVE_INTERVAL', '240' );
/* Media Trash. */
define( 'MEDIA_TRASH', true );
/* Updates */
define( 'WP_AUTO_UPDATE_CORE', false );
define( 'DISALLOW_FILE_MODS', false );
define( 'DISALLOW_FILE_EDIT', false );
/* 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');