2012-05-02 02:00:14 +08:00
|
|
|
var config = {
|
|
|
|
environment: 'test'
|
2012-05-02 02:02:50 +08:00
|
|
|
,port: 8888
|
2012-05-02 02:00:14 +08:00
|
|
|
,host: '127.0.0.1'
|
|
|
|
,enable_cors: true
|
2012-06-06 22:24:44 +08:00
|
|
|
,cache_enabled: false
|
2012-07-21 01:02:36 +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: 'test_cartodb_user_<%= user_id %>'
|
2012-05-02 02:00:14 +08:00
|
|
|
,postgres: {
|
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-28 18:24:04 +08:00
|
|
|
extent: "-20037508.5,-20037508.5,20037508.5,20037508.5",
|
2012-11-28 01:30:08 +08:00
|
|
|
simplify: true,
|
|
|
|
max_size: 500
|
2012-05-02 02:00:14 +08:00
|
|
|
}
|
2012-09-24 23:57:39 +08:00
|
|
|
,mapnik_version: '2.0.2'
|
2012-09-20 00:52:13 +08:00
|
|
|
,millstone: {
|
|
|
|
cache_basedir: '/tmp/cdb-tiler-test/millstone'
|
|
|
|
}
|
2012-05-02 02:00:14 +08:00
|
|
|
,redis: {
|
|
|
|
host: '127.0.0.1',
|
2012-07-10 00:55:25 +08:00
|
|
|
port: 6333,
|
2012-05-02 02:00:14 +08:00
|
|
|
idleTimeoutMillis: 1,
|
|
|
|
reapIntervalMillis: 1
|
|
|
|
}
|
|
|
|
,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: '',
|
2012-09-04 00:57:35 +08:00
|
|
|
port: null,
|
|
|
|
ttl: 86400
|
2012-05-02 02:00:14 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-06-06 01:17:49 +08:00
|
|
|
module.exports = config;
|