2012-05-02 02:00:14 +08:00
|
|
|
var config = {
|
2012-05-03 02:32:54 +08:00
|
|
|
environment: 'production'
|
2012-05-02 02:00:14 +08:00
|
|
|
,port: 8181
|
|
|
|
,host: '127.0.0.1'
|
|
|
|
,enable_cors: true
|
2012-05-02 02:02:50 +08:00
|
|
|
,cache_enabled: true
|
2012-09-05 21:49:10 +08:00
|
|
|
,postgres_auth_user: '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: 6432,
|
2012-06-06 01:17:49 +08:00
|
|
|
extent: "-20005048.4188,-20005048.4188,20005048.4188,20005048.4188",
|
2012-05-02 02:00:14 +08:00
|
|
|
simplify: true
|
|
|
|
}
|
2012-09-20 00:52:13 +08:00
|
|
|
,millstone: {
|
|
|
|
cache_basedir: '/home/ubuntu/tile_assets/'
|
|
|
|
}
|
2012-05-02 02:00:14 +08:00
|
|
|
,redis: {
|
|
|
|
host: '127.0.0.1',
|
|
|
|
port: 6379
|
|
|
|
}
|
|
|
|
,sqlapi: {
|
2012-05-03 02:32:54 +08:00
|
|
|
protocol: 'https',
|
|
|
|
host: 'cartodb.com',
|
|
|
|
port: 8080,
|
|
|
|
version: 'v2'
|
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-06-06 01:17:49 +08:00
|
|
|
module.exports = config;
|