Windshaft-cartodb/config/environments/development.js

23 lines
1.1 KiB
JavaScript

module.exports.name = 'development';
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
};
module.exports.redis = {host: '127.0.0.1',
port: 6379,
idleTimeoutMillis: 1,
reapIntervalMillis: 1};
module.exports.windshaft_port = 8181;
module.exports.windshaft_host = '127.0.0.1';
module.exports.enable_cors = true;
module.exports.varnish_host = 'localhost';
module.exports.varnish_port = 6082;
module.exports.cache_enabled = false;