<?php
/* THIS WILL NOT WORK WITHOUT BuddyServ V2.0 or later.
*
***************************************************************************
* Copyright (C) 2009 by lynk *
* hide@address.com *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program 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 General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
/* Configuration*/
$config = array();
/****************** !!!!!!!!!!DEFINE THIS!!!!!!!!!!
* We must designate ourselves incase we are not the
* only ones connecting to the download queue.
*
* This is your UNIQUE network name */
define('NETID', 'seedbox1.FR');
define('USERID', 955);
define('DEVEL', false);
/* Database Configuration
*
* We use two databases. The first, is the local torrentflux
* database. This allows us to stay sync'd with the web gui.
* The second database is the main production database
* which will be used when adding new torrents to the database
* and for communication with services. THIS WILL NOT WORK WITHOUT
* BuddyServ V2.0 or later.
*/
define('RFTP_HOST', '212.117.161.45');
define('RFTP_USER', 'lynk');
define('RFTP_PASS', 'fb,sL/Fu?&vL');
if (!DEVEL)
{
$config['database_local']['host'] = 'localhost'; // database host
$config['database_local']['db'] = 'torrentflux'; // database host
$config['database_local']['user'] = 'torrentflux'; // database host
$config['database_local']['password'] = 'fuckoff'; // database host
$config['database_remote']['host'] = '212.117.161.43'; // database host
$config['database_remote']['db'] = 'tmax'; // database host
$config['database_remote']['user'] = 'services'; // database host
$config['database_remote']['password'] = 'v?hide@address.com*bR'; // database host
define('UPDIR', '/home/torrentflux/torrentflux_2.4/html/downloads/admin/');
define('TORRENTDIR', '/home/torrentflux/torrentflux_2.4/html/downloads/.torrents/');
$config['ftp']['host'] = '93.174.93.201'; // database host
$config['ftp']['user'] = 'SB1'; // database host
$config['ftp']['password'] = 'e)%:[~f:mAPF'; // database host
$config['ftp']['port'] = '41971'; // database host
}
else
{
$config['database_local']['host'] = 'localhost'; // database host
$config['database_local']['db'] = 'torrentflux'; // database host
$config['database_local']['user'] = 'torrentflux'; // database host
$config['database_local']['password'] = 'fuckoff'; // database host
$config['database_remote']['host'] = '212.117.161.43'; // database host
$config['database_remote']['db'] = 'tmaxdev'; // database host
$config['database_remote']['user'] = 'services'; // database host
$config['database_remote']['password'] = 'v?hide@address.com*bR'; // database host
define('UPDIR', '/home/torrentflux/torrentflux_2.4/html/downloads/admin/');
define('TORRENTDIR', '/home/torrentflux/torrentflux_2.4/html/downloads/.torrents/');
$config['ftp']['host'] = '67.210.230.95'; // database host
$config['ftp']['user'] = 'hide@address.com'; // database host
$config['ftp']['password'] = '7p8Cguqq'; // database host
$config['ftp']['port'] = '21'; // database host
}
$config['python'] = '/usr/local/bin/python';
$config['maketorrent'] = '/home/torrentflux/torrentflux_2.4/html/TF_BitTornado/btmakemetafile.py';
$config['announcer'] = 'http://torrentmax.org/announce.php';
$config['passkey'] = 'c88c2a220e7b54cd09f767553af0f664';
?>