Created
August 26, 2018 22:40
-
-
Save fillipetech/fb11307d6cc31de0035fd39982dfc502 to your computer and use it in GitHub Desktop.
WP Config template #php #wp #wordpress #config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /****************************************************************************/ | |
| /* Database Configuration */ | |
| /****************************************************************************/ | |
| define('DB_NAME', 'databasename'); | |
| define('DB_USER', 'databaseuser'); | |
| define('DB_PASSWORD', 'databasepass'); | |
| define('DB_HOST', 'localhost'); | |
| define('DB_CHARSET', 'utf8'); | |
| define('DB_COLLATE', ''); | |
| $table_prefix = 'wp_'; | |
| /****************************************************************************/ | |
| /* Plugin Configuration */ | |
| /****************************************************************************/ | |
| /****************************************************************************/ | |
| /* WordPress Salts */ | |
| /****************************************************************************/ | |
| define('AUTH_KEY', 'wmskjj$1oSi+CcK;S;@dUK{UBxCtk.3L/=^Jy;Fdmr549gdH$O0%XiY[+Im=t|eU'); | |
| define('SECURE_AUTH_KEY', '61%ETMD}zufy~4mT<>f>q@gkv8lu4RoI;Wo,GY`BGqW+lyz__`@GOo>ITV{adl1K'); | |
| define('LOGGED_IN_KEY', '`br{6/N~{Yb@HXP+Lo+Xtc22Y;+Srz,N1]2J@7`7xNjrm1~f(b*Rg?#1L2G;2|X`'); | |
| define('NONCE_KEY', 'BKAoM1GN^T+qZ?@-?/zvWE1$kQnc2e-yXtq,WsrT:`+faX<&5:P>v<(:y#=l;1`j'); | |
| define('AUTH_SALT', ':)ir5>|t#H&<~&>,$?YWxkG&AQ)Y9WhA+`aE?,}b|f*mZ}vE4A{r%;ls9G{P+BY{'); | |
| define('SECURE_AUTH_SALT', '8-4G_UfRI&t!uRY2Imt8Qr<sJ0cc):;9esn%2(uSswY/KE6`uSq^jR;Vvns!hfL#'); | |
| define('LOGGED_IN_SALT', 'ASI/p7^M&rO_}LW}>X!kn/RcgGQ]=6rI|=.WsLT53I77)N&/HwS6.R,i#YhE97+d'); | |
| define('NONCE_SALT', 'KfQXVNC~c<]L-?mD2op^)m2nB)v+Ycw+LU}-Knn,D3h7D=_W0zE;:0A4CG4`c(Nw'); | |
| /****************************************************************************/ | |
| /* General WordPress Settings */ | |
| /****************************************************************************/ | |
| define('WPLANG', ''); | |
| define('WP_DEBUG', false); | |
| define('WP_CACHE', false); | |
| define('WP_DEBUG_LOG', false); | |
| define('WPMU_PLUGIN_DIR', dirname(__FILE__) . '/wp-content/mu-plugins'); | |
| define('WPMU_PLUGIN_URL', '/wp-content/mu-plugins'); | |
| define('FS_METHOD', 'direct'); | |
| define('WP_POST_REVISIONS', 10); | |
| define('WP_MEMORY_LIMIT', '128M'); | |
| define('WP_AUTO_UPDATE_CORE', false); | |
| /****************************************************************************/ | |
| /* Do not edit below */ | |
| /****************************************************************************/ | |
| /** Caminho absoluto para o diretório WordPress. */ | |
| if ( !defined('ABSPATH') ) | |
| define('ABSPATH', dirname(__FILE__) . '/'); | |
| /** Configura as variáveis e arquivos do WordPress. */ | |
| require_once(ABSPATH . 'wp-settings.php'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment