Forked from ashfame/local-config-awesome-wp-config-file.php
Created
August 6, 2019 13:04
-
-
Save matberry/6a5ba3221fa95f9e79b3880ae992f9f4 to your computer and use it in GitHub Desktop.
Local config file to hold db credentials and for defining keys & salts along with the use of awesome wp-config.php file
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 | |
| /** | |
| * WordPress config file to use one directory above WordPress root, when awesome version of wp-config.php is in use. | |
| * | |
| * Awesome wp-config.php file - https://gist.github.com/1923821 | |
| */ | |
| /* WordPress Local Environment DB credentials */ | |
| define('DB_NAME', 'project_21'); | |
| define('DB_USER', 'root'); | |
| define('DB_PASSWORD', 'root'); | |
| define('DB_HOST', 'localhost'); | |
| define('DB_CHARSET', 'utf8'); | |
| define('DB_COLLATE', ''); | |
| /* Keys & Salts */ | |
| define('AUTH_KEY', '5H%)s-nQ,+fn0gwg/p1UjBTmCQ?l[8-!>Q{MW&?X3DM,OF;TaI<SOOTrl0+-@) *'); | |
| define('SECURE_AUTH_KEY', '+%rr@,XIt-V+[.B9++uH1L,L+r)uq}5(:~=&4~Lk|.LV|y;R}fEo?G}+Sntf_JN}'); | |
| define('LOGGED_IN_KEY', 'Szv!gQm9#(L&TUD OnM`>sXGge:m1j`L2 5sO;hRNVhlN>IUED1/`%<[ly-GxVJ '); | |
| define('NONCE_KEY', 'o-Jo;>G#-%~,[ki@REqXV%4^I.HDnc.3]P;e8];4pJt% $xe5K<aOb|a2*QKV4c-'); | |
| define('AUTH_SALT', '8-tQb3d|W8,;Y_#mfuFB.1&b%U2fnlLD|F&yH).tLRX=ANEdNap{78o|9tqv6JPt'); | |
| define('SECURE_AUTH_SALT', 'RSa%^qd~T|@+!-;qgh,qK-GJ}zPpgxz#+@v6-I;BMwqT`TzGTtg_^n*ILxGOdbq4'); | |
| define('LOGGED_IN_SALT', ']+XV)YK.Q-EU1vR [BT!Y$!d(J_[AO37OP[Fg[/esFx;6cI-L[^O|cvtw9F[;_*Q'); | |
| define('NONCE_SALT', 'iP{nTQBzy&f^hSbwBgyan.v9<+ErvAMi2ymLhz`Tl-fF?HXa(j<W`wA*8U3R#-|w'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment