2012-05-02 02:00:14 +08:00
|
|
|
var config = {
|
|
|
|
environment: 'development'
|
|
|
|
,port: 8181
|
|
|
|
,host: '127.0.0.1'
|
2013-01-30 00:36:50 +08:00
|
|
|
// Maximum number of connections for one process
|
|
|
|
// 128 is a good value with a limit of 1024 open file descriptors
|
|
|
|
,maxConnections:128
|
2012-12-05 20:59:20 +08:00
|
|
|
// idle socket timeout, in miliseconds
|
|
|
|
,socket_timeout: 600000
|
2012-05-02 02:00:14 +08:00
|
|
|
,enable_cors: true
|
2012-05-02 02:02:50 +08:00
|
|
|
,cache_enabled: false
|
2013-01-30 19:59:05 +08:00
|
|
|
,log_format: '[:date] :req[X-Real-IP] :method :req[Host]:url :status :response-time ms -> :res[Content-Type]'
|
2012-09-05 21:49:10 +08:00
|
|
|
,postgres_auth_user: 'development_cartodb_user_<%= user_id %>'
|
2012-05-02 02:00:14 +08:00
|
|
|
,postgres: {
|
2012-12-08 01:58:31 +08:00
|
|
|
// Parameters to pass to datasource plugin of mapnik
|
|
|
|
// See http://github.com/mapnik/mapnik/wiki/PostGIS
|
2012-05-02 02:00:14 +08:00
|
|
|
type: "postgis",
|
2012-07-18 17:00:24 +08:00
|
|
|
user: "publicuser",
|
2012-05-02 02:00:14 +08:00
|
|
|
host: '127.0.0.1',
|
|
|
|
port: 5432,
|
2012-11-29 17:20:37 +08:00
|
|
|
extent: "-20037508.3,-20037508.3,20037508.3,20037508.3",
|
2012-05-08 00:30:16 +08:00
|
|
|
/* experimental
|
2012-05-02 02:00:14 +08:00
|
|
|
geometry_field: "the_geom",
|
|
|
|
extent: "-180,-90,180,90",
|
|
|
|
srid: 4326,
|
2012-05-08 00:30:16 +08:00
|
|
|
*/
|
2012-12-08 03:34:24 +08:00
|
|
|
row_limit: 65535,
|
2012-12-08 02:50:57 +08:00
|
|
|
simplify_geometries: true,
|
2012-11-28 01:30:08 +08:00
|
|
|
max_size: 500
|
2012-05-02 02:00:14 +08:00
|
|
|
}
|
2012-10-09 18:12:33 +08:00
|
|
|
,mapnik_version: undefined
|
2013-02-25 23:53:57 +08:00
|
|
|
,renderer: {
|
|
|
|
// Milliseconds since last access before renderer cache item expires
|
|
|
|
cache_ttl: 60000,
|
|
|
|
metatile: 4,
|
|
|
|
bufferSize: 64
|
|
|
|
}
|
2012-09-20 00:52:13 +08:00
|
|
|
,millstone: {
|
|
|
|
cache_basedir: '/tmp/cdb-tiler-dev/millstone-dev'
|
|
|
|
}
|
2012-05-02 02:00:14 +08:00
|
|
|
,redis: {
|
|
|
|
host: '127.0.0.1',
|
|
|
|
port: 6379,
|
2013-02-21 19:56:04 +08:00
|
|
|
// Max number of connections in each pool.
|
|
|
|
// Users will be put on a queue when the limit is hit.
|
|
|
|
// Set to maxConnection to have no possible queues.
|
|
|
|
// There are currently 3 pools involved in serving
|
|
|
|
// windshaft-cartodb requests so multiply this number
|
|
|
|
// by 3 to know how many possible connections will be
|
|
|
|
// kept open by the server. The default is 50.
|
|
|
|
max: 50,
|
2013-01-29 20:01:17 +08:00
|
|
|
idleTimeoutMillis: 1, // idle time before dropping connection
|
|
|
|
reapIntervalMillis: 1 // time between cleanups
|
2012-05-02 02:00:14 +08:00
|
|
|
}
|
|
|
|
,sqlapi: {
|
2012-05-03 02:32:54 +08:00
|
|
|
protocol: 'http',
|
|
|
|
host: 'localhost.lan',
|
|
|
|
port: 8080,
|
|
|
|
version: 'v1'
|
2012-05-02 02:00:14 +08:00
|
|
|
}
|
|
|
|
,varnish: {
|
|
|
|
host: 'localhost',
|
2012-09-04 00:57:35 +08:00
|
|
|
port: 6082,
|
|
|
|
ttl: 86400
|
2012-05-02 02:00:14 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-05-08 00:30:16 +08:00
|
|
|
module.exports = config;
|