2
0

config.js 592 B

1234567891011
  1. var config = {
  2. min_size: 0, // < 0 will (obviously) cause crash
  3. max_size: 512, // too big values might lead to slow response time or DoS
  4. default_size: 180, // size to be used when no size given
  5. browser_cache_time: 3600, // seconds until browser will request image again
  6. http_timeout: 1000, // ms until connection to mojang is dropped
  7. faces_dir: 'skins/faces/', // directory where faces are kept. should have trailing '/'
  8. helms_dir: 'skins/helms/' // directory where helms are kept. should have trailing '/'
  9. };
  10. module.exports = config;