Windshaft-cartodb/config/environments/staging.js.example

39 lines
971 B
Plaintext
Raw Normal View History

2012-09-04 16:52:42 +08:00
var config = {
environment: 'production'
,port: 8181
,host: '127.0.0.1'
,enable_cors: true
,cache_enabled: true
,log_format: '[:date] :req[X-Real-IP] \033[90m:method\033[0m \033[36m:req[Host]:url\033[0m \033[90m:status :response-time ms -> :res[Content-Type]\033[0m'
,postgres_auth_user: 'cartodb_staging_user_<%= user_id %>'
2012-09-04 16:52:42 +08:00
,postgres: {
user: "publicuser",
host: '127.0.0.1',
port: 6432,
extent: "-20037508.5,-20037508.5,20037508.5,20037508.5",
simplify: true,
max_size: 500
2012-09-04 16:52:42 +08:00
}
,mapnik_version: undefined
,millstone: {
cache_basedir: '/home/ubuntu/tile_assets/'
}
2012-09-04 16:52:42 +08:00
,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;