Windshaft-cartodb/config/environments/test.js

34 lines
679 B
JavaScript
Raw Normal View History

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
,cache_enabled: false
2012-05-02 02:00:14 +08:00
,postgres: {
user: "tileuser",
host: '127.0.0.1',
port: 5432,
srid: 4326,
extent: "-20005048.4188,-20005048.4188,20005048.4188,20005048.4188",
2012-05-02 02:00:14 +08:00
simplify: true
}
,redis: {
host: '127.0.0.1',
port: 6333,
2012-05-02 02:00:14 +08:00
idleTimeoutMillis: 1,
reapIntervalMillis: 1
}
,sqlapi: {
protocol: 'http',
host: 'localhost.lan',
port: 8080,
version: 'v1'
2012-05-02 02:00:14 +08:00
}
,varnish: {
host: '',
port: null
}
};
module.exports = config;