-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
base config (this loads the settings file)
- Loading branch information
Showing
2 changed files
with
230 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,229 @@ | ||
<?php | ||
/* | ||
* Copyright (C) 2012 Platoniq y Fundación Fuentes Abiertas (see README for details) | ||
* This file is part of Goteo. | ||
* | ||
* Goteo is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* Goteo is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with Goteo. If not, see <http://www.gnu.org/licenses/agpl.txt>. | ||
* | ||
*/ | ||
|
||
define('GOTEO_PATH', __DIR__ . DIRECTORY_SEPARATOR); | ||
if (function_exists('ini_set')) { | ||
ini_set('include_path', GOTEO_PATH . PATH_SEPARATOR . '.'); | ||
} else { | ||
throw new Exception("No puedo añadir la API GOTEO al include_path."); | ||
} | ||
|
||
// Nodo actual | ||
define('GOTEO_NODE', 'goteo'); | ||
|
||
define('PEAR', GOTEO_PATH . 'library' . '/' . 'pear' . '/'); | ||
if (function_exists('ini_set')) { | ||
ini_set('include_path', ini_get('include_path') . PATH_SEPARATOR . PEAR); | ||
} else { | ||
throw new Exception("No puedo añadir las librerías PEAR al include_path."); | ||
} | ||
|
||
/****************************************************** | ||
PhpMailer constants | ||
*******************************************************/ | ||
if (!defined('PHPMAILER_CLASS')) { | ||
define ('PHPMAILER_CLASS', GOTEO_PATH . 'library' . DIRECTORY_SEPARATOR . 'phpmailer' . DIRECTORY_SEPARATOR . 'class.phpmailer.php'); | ||
} | ||
if (!defined('PHPMAILER_LANGS')) { | ||
define ('PHPMAILER_LANGS', GOTEO_PATH . 'library' . DIRECTORY_SEPARATOR . 'phpmailer' . DIRECTORY_SEPARATOR . 'language' . DIRECTORY_SEPARATOR); | ||
} | ||
if (!defined('PHPMAILER_SMTP')) { | ||
define ('PHPMAILER_SMTP', GOTEO_PATH . 'library' . DIRECTORY_SEPARATOR . 'phpmailer' . DIRECTORY_SEPARATOR . 'class.smtp.php'); | ||
} | ||
if (!defined('PHPMAILER_POP3')) { | ||
define ('PHPMAILER_POP3', GOTEO_PATH . 'library' . DIRECTORY_SEPARATOR . 'phpmailer' . DIRECTORY_SEPARATOR . 'class.pop3.php'); | ||
} | ||
|
||
/****************************************************** | ||
OAUTH APP's Secrets | ||
*******************************************************/ | ||
if (!defined('OAUTH_LIBS')) { | ||
define ('OAUTH_LIBS', GOTEO_PATH . 'library' . DIRECTORY_SEPARATOR . 'oauth' . DIRECTORY_SEPARATOR . 'SocialAuth.php'); | ||
} | ||
|
||
//Uploads i catxe | ||
define('GOTEO_DATA_PATH', dirname(__FILE__) . DIRECTORY_SEPARATOR . 'data' . DIRECTORY_SEPARATOR); | ||
|
||
/** | ||
* Carga de configuración local si existe | ||
* Si no se carga el real (si existe) | ||
**/ | ||
if (file_exists('local-settings.php')) //en .gitignore | ||
require 'local-settings.php'; | ||
elseif (file_exists('live-settings.php')) //se considera en git | ||
require 'live-settings.php'; | ||
else | ||
die(<<<EOF | ||
No se encuentra el archivo de configuración <strong>local-settings.php</strong>, debes crear este archivo en la raiz.<br /> | ||
Puedes usar el siguiente código modificado con los credenciales adecuados.<br /> | ||
<pre> | ||
<?php | ||
// Metadata | ||
define('GOTEO_META_TITLE', '--meta-title--'); | ||
define('GOTEO_META_DESCRIPTION', '--meta-description--'); | ||
define('GOTEO_META_KEYWORDS', '--keywords--'); | ||
define('GOTEO_META_AUTHOR', '--author--'); | ||
define('GOTEO_META_COPYRIGHT', '--copyright--'); | ||
//AWS Credentials | ||
define("AWS_KEY", "--------------"); | ||
define("AWS_SECRET", "----------------------------------"); | ||
define("AWS_REGION", "-----------"); | ||
//Mail management: ses, phpmailer | ||
define("MAIL_HANDLER", "phpmailer"); | ||
// Database | ||
define('GOTEO_DB_DRIVER', 'mysql'); | ||
define('GOTEO_DB_HOST', 'localhost'); | ||
define('GOTEO_DB_PORT', 3306); | ||
define('GOTEO_DB_CHARSET', 'UTF-8'); | ||
define('GOTEO_DB_SCHEMA', 'db-schema'); | ||
define('GOTEO_DB_USERNAME', 'db-username'); | ||
define('GOTEO_DB_PASSWORD', 'db-password'); | ||
define('GOTEO_MAIL_FROM', 'noreply@example.com'); | ||
define('GOTEO_MAIL_NAME', 'example.com'); | ||
define('GOTEO_MAIL_TYPE', 'smtp'); | ||
define('GOTEO_MAIL_SMTP_AUTH', true); | ||
define('GOTEO_MAIL_SMTP_SECURE', 'ssl'); | ||
define('GOTEO_MAIL_SMTP_HOST', 'smtp--host'); | ||
define('GOTEO_MAIL_SMTP_PORT', --portnumber--); | ||
define('GOTEO_MAIL_SMTP_USERNAME', 'smtp-usermail'); | ||
define('GOTEO_MAIL_SMTP_PASSWORD', 'smtp-password'); | ||
define('GOTEO_MAIL', 'info@example.com'); | ||
define('GOTEO_CONTACT_MAIL', 'info@example.com'); | ||
define('GOTEO_FAIL_MAIL', 'fail@example.com'); | ||
define('GOTEO_LOG_MAIL', 'sitelog@example.com'); | ||
//Quota de envio máximo para goteo en 24 horas | ||
define('GOTEO_MAIL_QUOTA', 50000); | ||
//Quota de envio máximo para newsletters para goteo en 24 horas | ||
define('GOTEO_MAIL_SENDER_QUOTA', round(GOTEO_MAIL_QUOTA * 0.8)); | ||
//clave de Amazon SNS para recopilar bounces automaticamente: 'arn:aws:sns:us-east-1:XXXXXXXXX:amazon-ses-bounces' | ||
//la URL de informacion debe ser: goteo_url.tld/aws-sns.php | ||
define('AWS_SNS_CLIENT_ID', 'XXXXXXXXX'); | ||
define('AWS_SNS_REGION', 'us-east-1'); | ||
define('AWS_SNS_BOUNCES_TOPIC', 'amazon-ses-bounces'); | ||
define('AWS_SNS_COMPLAINTS_TOPIC', 'amazon-ses-complaints'); | ||
// Language | ||
define('GOTEO_DEFAULT_LANG', 'en'); | ||
// name of the gettext .po file (used for admin only texts at the moment) | ||
define('GOTEO_GETTEXT_DOMAIN', 'messages'); | ||
// gettext files are cached, to reload a new one requires to restart Apache which is stupid (and annoying while | ||
// developing) this setting tells the langueage code to bypass caching by using a clever file-renaming | ||
// mechanism described in http://blog.ghost3k.net/articles/php/11/gettext-caching-in-php | ||
define('GOTEO_GETTEXT_BYPASS_CACHING', true); | ||
// url | ||
define('SITE_URL', 'http://example.com'); // endpoint url | ||
define('SRC_URL', 'http://example.com'); // host for statics | ||
define('SEC_URL', 'http://example.com'); // with SSL certified | ||
//Sessions | ||
//session handler: php, dynamodb | ||
define("SESSION_HANDLER", "php"); | ||
//Files management: s3, file | ||
define("FILE_HANDLER", "file"); | ||
//Log file management: s3, file | ||
define("LOG_HANDLER", "file"); | ||
// tipo de entorno: local, beta, real | ||
define("GOTEO_ENV", "local"); | ||
//S3 bucket | ||
define("AWS_S3_BUCKET", "static.example.com"); | ||
define("AWS_S3_PREFIX", ""); | ||
//bucket para logs | ||
define("AWS_S3_LOG_BUCKET", "bucket"); | ||
define("AWS_S3_LOG_PREFIX", "applogs/"); | ||
// nodo central | ||
define('GOTEO_NODE', 'goteo'); | ||
// Cron params | ||
define('CRON_PARAM', '--------------'); | ||
define('CRON_VALUE', '--------------'); | ||
/**************************************************** | ||
Paypal constants (sandbox) | ||
****************************************************/ | ||
define('PAYPAL_REDIRECT_URL', '---Sandbox/Production-url-----https://www.sandbox.paypal.com/webscr&cmd='); | ||
define('PAYPAL_DEVELOPER_PORTAL', '--developper-domain--'); | ||
define('PAYPAL_DEVICE_ID', '--domain--'); | ||
define('PAYPAL_APPLICATION_ID', '--PayPal-app-Id---'); | ||
define('PAYPAL_BUSINESS_ACCOUNT', '--mail-like-paypal-account--'); | ||
define('PAYPAL_IP_ADDRESS', '127.0.0.1'); | ||
/**************************************************** | ||
TPV [Bank Name] | ||
****************************************************/ | ||
define('TPV_MERCHANT_CODE', 'xxxxxxxxx'); | ||
define('TPV_REDIRECT_URL', '--bank-rest-api-url--'); | ||
define('TPV_ENCRYPT_KEY', 'xxxxxxxxx'); | ||
/**************************************************** | ||
Social Services constants | ||
****************************************************/ | ||
// Credenciales app Facebook | ||
define('OAUTH_FACEBOOK_ID', '-----------------------------------'); // | ||
define('OAUTH_FACEBOOK_SECRET', '-----------------------------------'); // | ||
// Credenciales app Twitter | ||
define('OAUTH_TWITTER_ID', '-----------------------------------'); // | ||
define('OAUTH_TWITTER_SECRET', '-----------------------------------'); // | ||
// Credenciales app Linkedin | ||
define('OAUTH_LINKEDIN_ID', '-----------------------------------'); // | ||
define('OAUTH_LINKEDIN_SECRET', '-----------------------------------'); // | ||
//Un secreto inventado cualquiera para encriptar los emails que sirven de secreto en openid | ||
define('OAUTH_OPENID_SECRET','-----------------------------------'); | ||
// recaptcha | ||
define('RECAPTCHA_PUBLIC_KEY','-----------------------------------'); | ||
define('RECAPTCHA_PRIVATE_KEY','-----------------------------------'); | ||
/**************************************************** | ||
Google Analytics | ||
****************************************************/ | ||
define('GOTEO_ANALYTICS_TRACKER', "<script type=\"text/javascript\"> | ||
</script> | ||
"); | ||
?> | ||
</pre> | ||
EOF | ||
); | ||
|
||
if (file_exists('tmp-settings.php')) | ||
require 'tmp-settings.php'; | ||
else { | ||
// Comportamientos temporales | ||
define('DEVGOTEO_LOCAL', false); | ||
define('GOTEO_MAINTENANCE', null); | ||
define('GOTEO_EASY', null); | ||
define('GOTEO_FREE', true); | ||
} |