-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.js
66 lines (55 loc) · 1.41 KB
/
settings.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// EasySOA Web
// Copyright (c) 2011 Open Wide and others
//
// MIT licensed
//
// Contact : easysoa-dev@googlegroups.com
/* ==============
* Proxy settings
* ==============
*/
exports.PROXY_PORT = '8081';
// to enable forward proxying to your company's proxy, uncomment and adapt :
//exports.FORWARD_PROXY_HOST = 'myCompanyProxy.com'
//exports.FORWARD_PROXY_PORT = 80
/* ===================
* Web server settings
* ===================
*/
exports.WEB_PORT = '8083';
exports.WWW_PATH = __dirname + '/../www';
exports.NO_AUTH_NEEDED = [
'^/favicon.ico',
'^/css/*',
'^/js/*',
'^/lib/*',
'^/img/*',
'^/js/bookmarklet/*',
'^/demo-intranet/*'
];
exports.SCAFFOLDING_SERVER_URL = "http://127.0.0.1:18000";
/* ==============
* Nuxeo settings
* ==============
*/
exports.NUXEO_URL = NUXEO_URL = 'http://127.0.0.1:8080/nuxeo';
exports.NUXEO_REST_URL = NUXEO_URL + '/site';
exports.EASYSOA_ROOT_URL = EASYSOA_ROOT_URL = NUXEO_URL + '/site/easysoa';
exports.EASYSOA_DISCOVERY_PATH = 'easysoa/registry';
exports.EASYSOA_SERVICE_FINDER_PATH = 'easysoa/servicefinder';
exports.SERVICE_FINDER_IGNORE = [
'\\.css',
'\\.jpg',
'\\.gif',
'\\.png',
'\\.js$', // and not .jsp !
'\\.ico',
'localhost:7001', // FraSCAti (part of EasySOA Light)
'127.0.0.1:7001',
'jQuery',
'/socket\\.io/',
'google',
'8080', // nuxeo registry
'8083',
NUXEO_URL
];