Windshaft-cartodb/config/environments/production.js

29 lines
532 B
JavaScript
Raw Normal View History

2012-05-02 02:00:14 +08:00
var config = {
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-05-02 02:00:14 +08:00
,postgres: {
user: "tileuser",
host: '127.0.0.1',
port: 6432,
simplify: true
}
,redis: {
host: '127.0.0.1',
port: 6379
}
,sqlapi: {
protocol: 'https',
host: 'cartodb.com',
port: 8080,
version: 'v2'
2012-05-02 02:00:14 +08:00
}
,varnish: {
host: 'localhost',
port: 6082
}
};
module.exports = config;