83 lines
3.3 KiB
Plaintext
83 lines
3.3 KiB
Plaintext
<?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 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
|
|
*/
|
|
// ** MySQL settings - You can get this info from your web host ** //
|
|
define( 'WP_HOME', 'https://sisvietnam.vn' );
|
|
define( 'WP_SITEURL', 'https://sisvietnam.vn' );
|
|
// define( 'WP_HOME', 'http://dotquy.vn' );
|
|
// define( 'WP_SITEURL', 'http://dotquy.vn' );
|
|
define( 'WP_CRM_API', 'http://crmapi.sisvietnam.vn:8083');
|
|
define( 'WP_VNPTAPI', 'http://bvdotquy.vnpthis.vn/web_his/l2/api');
|
|
define('DB_NAME', 'sisvietnam_db');
|
|
/** MySQL database username */
|
|
define('DB_USER', 'usis_user');
|
|
|
|
/** MySQL database password */
|
|
define('DB_PASSWORD', 'LLsis2018');
|
|
/** 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', '');
|
|
/**#@+
|
|
* 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', '7q|+Z,ugy6pPs#kjFX6nw?$kEFm78By2 y/mtNjMY;|,z#s^P/RO/q,Du8&W)c5*');
|
|
define('SECURE_AUTH_KEY', 'JrF0~ g6@qs4P^}%q?ylbPnkD*8+b>70d|QndZ%GhSxIPu8|#5#,snf>m)?[x?V6');
|
|
define('LOGGED_IN_KEY', '=y^~A]3to(s-/yi9L97VL&M5|a&W{VRiVkP,YtZ_x)1prcw*i%7I_;GffJHG*]w/');
|
|
define('NONCE_KEY', 'XdKrrp?+~UU^FEQ]`_R^KCiH0ra^d4$cN2sNb/x(C (sn%g|U4:T!}:;sn7~?l.)');
|
|
define('AUTH_SALT', 'EKYkXs]7SusVjE<CcWN$}kuHlTfs>/{%AbYZ%2A[T;DptpbNFEgzAs-+%O%o,_oP');
|
|
define('SECURE_AUTH_SALT', 'K8l0/m3>;({ywB/ElBvwJt~t:<;Lxw9rhKfmGYM0$X)Hg0K]dL=zgbi?}P6g-~0o');
|
|
define('LOGGED_IN_SALT', 'O_9EWcA2)!z6?Ajg,C&]#LYRP>WZ5.Bh4{_NM>:oliYedho1.l87[1yt*|dPj$Nj');
|
|
define('NONCE_SALT', 'XDf{5wI`g+bdTjVY73!7f~kKS|}hGS5K8rlP`fa*xNd$7<*i0`*O)5?|GC{k.31W');
|
|
/**#@-*/
|
|
/**
|
|
* 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 = 'sis_';
|
|
/**
|
|
* 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 );
|
|
/* 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');
|
|
define('WP_MEMORY_LIMIT', '512M'); |