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

36 lines
762 B
Plaintext
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
,postgres_auth_user: 'cartodb_user_<%= user_id %>'
2012-05-02 02:00:14 +08:00
,postgres: {
user: "publicuser",
2012-05-02 02:00:14 +08:00
host: '127.0.0.1',
port: 6432,
extent: "-20005048.4188,-20005048.4188,20005048.4188,20005048.4188",
2012-05-02 02:00:14 +08:00
simplify: true
}
,millstone: {
cache_basedir: '/home/ubuntu/tile_assets/'
}
2012-05-02 02:00:14 +08:00
,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,
ttl: 86400
2012-05-02 02:00:14 +08:00
}
};
module.exports = config;