46 lines
981 B
JavaScript
46 lines
981 B
JavaScript
(function() {
|
|
|
|
var hostname = window.location.hostname;
|
|
|
|
BR.conf = {};
|
|
|
|
if (hostname === 'brouter.de' || hostname === 'h2096617.stratoserver.net') {
|
|
|
|
// online service (brouter.de) configuration
|
|
|
|
BR.conf.profiles = [
|
|
'trekking',
|
|
'fastbike',
|
|
'car-test',
|
|
'safety',
|
|
'shortest',
|
|
'trekking-ignore-cr',
|
|
'trekking-steep',
|
|
'trekking-noferries',
|
|
'trekking-nosteps',
|
|
'moped',
|
|
'rail',
|
|
'river',
|
|
'vm-forum-liegerad-schnell',
|
|
'vm-forum-velomobil-schnell'
|
|
];
|
|
|
|
BR.conf.host = 'http://h2096617.stratoserver.net:443';
|
|
|
|
} else {
|
|
|
|
// desktop configuration
|
|
|
|
BR.conf.profiles = [
|
|
'trekking',
|
|
'fastbike',
|
|
'shortest',
|
|
'moped',
|
|
'car-test'
|
|
];
|
|
|
|
BR.conf.host = 'http://localhost:17777';
|
|
|
|
}
|
|
|
|
})();
|