2011-09-05 07:00:41 +08:00
|
|
|
module.exports.name = 'development';
|
2012-04-02 01:14:05 +08:00
|
|
|
module.exports.postgres = {
|
|
|
|
type: "postgis",
|
|
|
|
user: "tileuser",
|
|
|
|
host: '127.0.0.1',
|
|
|
|
port: 5432,
|
|
|
|
geometry_field: "the_geom",
|
|
|
|
extent: "-180,-90,180,90",
|
|
|
|
srid: 4326,
|
|
|
|
max_size: 0,
|
|
|
|
simplify: true
|
|
|
|
};
|
2011-09-05 07:00:41 +08:00
|
|
|
module.exports.redis = {host: '127.0.0.1',
|
|
|
|
port: 6379,
|
|
|
|
idleTimeoutMillis: 1,
|
|
|
|
reapIntervalMillis: 1};
|
2011-10-13 21:22:54 +08:00
|
|
|
module.exports.windshaft_port = 8181;
|
2012-02-09 23:33:06 +08:00
|
|
|
module.exports.windshaft_host = '127.0.0.1';
|
2011-12-13 02:02:10 +08:00
|
|
|
module.exports.enable_cors = true;
|
|
|
|
module.exports.varnish_host = 'localhost';
|
|
|
|
module.exports.varnish_port = 6082;
|
|
|
|
module.exports.cache_enabled = false;
|