View Single Post
  #6  
Old 10th November 2014, 09:24
rfadown rfadown is offline
Member
 
Join Date: Aug 2012
P2P
Posts: 11
Default
Quote:
Originally Posted by firefly007 View Post
paste your config.cpp here please
Hi! Here is it

Code:
#include "config.h"

config::config() {
    host = "domain.org";
    port = 34000;
    max_connections = 1024;
    max_read_buffer = 4096;
    max_request_size = 4096;
    timeout_interval = 20;
    schedule_interval = 3;
    max_middlemen = 5000;

    announce_interval = 1800;
    peers_timeout = 2700; //Announce interval * 1.5

    reap_peers_interval = 1800;
    del_reason_lifetime = 604800;

    // MySQL
    mysql_db = "gazelle";
    mysql_host = "localhost:3306";
    mysql_username = "root";
    mysql_password = "passwork";

    // Site communication
    site_host = "localhost";
    site_password = "00000000000000000000000000000000"; // MUST BE 32 CHARS
    site_path = "http://domain.org"; // If the site is not running under the domain root

    // Key to use for /report?get=stats and /report?get=user&key=<passkey> requests
    report_password = "00000000000000000000000000000000"; // MUST BE 32 CHARS
}
Please help me, thanks a lot
Reply With Quote