Commit 2f63d6c8c095ad7e87f6dcae7c3ccc7a1cbcf6b6
Exists in
master
and in
1 other branch
Merge pull request #333 from marcoamarelo/issue276
Fix pensandoodireito/participacao-sitebase#276
Showing
1 changed file
with
19 additions
and
3 deletions
Show diff stats
config/wp-config-vagrant.php
| 1 | 1 | <?php |
| 2 | -/** | |
| 2 | +/** | |
| 3 | 3 | * As configurações básicas do WordPress. |
| 4 | 4 | * |
| 5 | 5 | * Esse arquivo contém as seguintes configurações: configurações de MySQL, Prefixo de Tabelas, |
| ... | ... | @@ -71,6 +71,22 @@ $table_prefix = 'wp_'; |
| 71 | 71 | */ |
| 72 | 72 | define('WP_DEBUG', true); |
| 73 | 73 | |
| 74 | +define('SMTP_PORT', '25'); | |
| 75 | + | |
| 76 | +define('SMTP_HOST', 'localhost'); | |
| 77 | + | |
| 78 | +define('SMTP_FROM', 'pensandoodireito@mj.gov.br'); | |
| 79 | + | |
| 80 | +define('SMTP_FROMNAME', 'Plataforma de Debate Público Pensando o Direito'); | |
| 81 | + | |
| 82 | +define('BITLY_LOGIN', ''); | |
| 83 | + | |
| 84 | +define('BITLY_APIKEY', ''); | |
| 85 | + | |
| 86 | +define('ANOTATION_SERVER', ''); | |
| 87 | + | |
| 88 | +define('USE_CUSTOM_SIGNUP', true); | |
| 89 | + | |
| 74 | 90 | /* Multisite */ |
| 75 | 91 | define( 'WP_ALLOW_MULTISITE', true ); |
| 76 | 92 | |
| ... | ... | @@ -85,7 +101,7 @@ define('BLOG_ID_CURRENT_SITE', 1); |
| 85 | 101 | |
| 86 | 102 | /** Caminho absoluto para o diretório WordPress. */ |
| 87 | 103 | if ( !defined('ABSPATH') ) |
| 88 | - define('ABSPATH', dirname(__FILE__) . '/'); | |
| 89 | - | |
| 104 | + define('ABSPATH', dirname(__FILE__) . '/'); | |
| 105 | + | |
| 90 | 106 | /** Configura as variáveis do WordPress e arquivos inclusos. */ |
| 91 | 107 | require_once(ABSPATH . 'wp-settings.php'); | ... | ... |