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,7 +60,7 @@ define('SPHINX_MAX_MATCHES', 1000); // Must be <= the server's max_matches varia
60 60
 define('SPHINX_INDEX',       'torrents');
61 61
 
62 62
 // Ocelot details
63
-define('TRACKER_HOST',      '8.8.8.8');
63
+define('TRACKER_HOST',      '0.0.0.0');
64 64
 define('TRACKER_PORT',      34000);
65 65
 define('TRACKER_SECRET',    'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); // Must be 32 characters and match site_password in Ocelot's config.cpp
66 66
 define('TRACKER_REPORTKEY', 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA'); // Must be 32 characters and match report_password in Ocelot's config.cpp
@@ -132,7 +132,7 @@ define('BOT_INTERVIEW_CHAN',    '#interview'); // Channel for the interviews
132 132
 define('BOT_INTERVIEW_NUM',     5);
133 133
 define('BOT_INTERVIEW_STAFF',   '#interview-staff'); // Channel for the interviewers
134 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 136
 define('ADMIN_CHAN',            '#admin');
137 137
 define('LAB_CHAN',              '#lab');
138 138
 define('STATUS_CHAN',           '#status');

Loading…
Cancel
Save