Browse Source

Don't use google's DNS as a default config IP address

This was meant to make it to clear to administrators that the value
should be changed, but too many have just left it alone and wondered why
gazelle takes forever to load (while waiting for the connection to
8.8.8.8 to time out)

Also I thought I removed this forever ago. Whoops.
spaghetti 8 years ago
parent
commit
bc198c1956
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      classes/config.template

+ 2
- 2
classes/config.template View File

60
 define('SPHINX_INDEX',       'torrents');
60
 define('SPHINX_INDEX',       'torrents');
61
 
61
 
62
 // Ocelot details
62
 // Ocelot details
63
-define('TRACKER_HOST',      '8.8.8.8');
63
+define('TRACKER_HOST',      '0.0.0.0');
64
 define('TRACKER_PORT',      34000);
64
 define('TRACKER_PORT',      34000);
65
 define('TRACKER_SECRET',    'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); // Must be 32 characters and match site_password in Ocelot's config.cpp
65
 define('TRACKER_SECRET',    'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); // Must be 32 characters and match site_password in Ocelot's config.cpp
66
 define('TRACKER_REPORTKEY', 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); // Must be 32 characters and match report_password in Ocelot's config.cpp
66
 define('TRACKER_REPORTKEY', 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); // Must be 32 characters and match report_password in Ocelot's config.cpp
132
 define('BOT_INTERVIEW_NUM',     5);
132
 define('BOT_INTERVIEW_NUM',     5);
133
 define('BOT_INTERVIEW_STAFF',   '#interview-staff'); // Channel for the interviewers
133
 define('BOT_INTERVIEW_STAFF',   '#interview-staff'); // Channel for the interviewers
134
 define('SOCKET_LISTEN_PORT',    51010);
134
 define('SOCKET_LISTEN_PORT',    51010);
135
-define('SOCKET_LISTEN_ADDRESS', '8.8.8.8');
135
+define('SOCKET_LISTEN_ADDRESS', '0.0.0.0');
136
 define('ADMIN_CHAN',            '#admin');
136
 define('ADMIN_CHAN',            '#admin');
137
 define('LAB_CHAN',              '#lab');
137
 define('LAB_CHAN',              '#lab');
138
 define('STATUS_CHAN',           '#status');
138
 define('STATUS_CHAN',           '#status');

Loading…
Cancel
Save