33 lines
688 B
JavaScript
33 lines
688 B
JavaScript
var config = {
|
|
environment: 'production'
|
|
,port: 8181
|
|
,host: '127.0.0.1'
|
|
,enable_cors: true
|
|
,cache_enabled: true
|
|
,postgres: {
|
|
user: "publicuser",
|
|
db_user: 'cartodb_staging_user_<%= user_id %>',
|
|
host: '127.0.0.1',
|
|
port: 6432,
|
|
extent: "-20005048.4188,-20005048.4188,20005048.4188,20005048.4188",
|
|
simplify: true
|
|
}
|
|
,redis: {
|
|
host: '127.0.0.1',
|
|
port: 6379
|
|
}
|
|
,sqlapi: {
|
|
protocol: 'https',
|
|
host: 'cartodb.com',
|
|
port: 8080,
|
|
version: 'v2'
|
|
}
|
|
,varnish: {
|
|
host: 'localhost',
|
|
port: 6082,
|
|
ttl: 86400
|
|
}
|
|
};
|
|
|
|
module.exports = config;
|