-
Notifications
You must be signed in to change notification settings - Fork 2
/
proxy.config
29 lines (27 loc) · 1.34 KB
/
proxy.config
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
<?xml version="1.0" encoding="utf-8" ?>
<!-- Proxy config is used to set the ArcGIS Server services that the proxy will forward to.
mustMatch: true to only proxy to sites listed, false to proxy to any site -->
<ProxyConfig mustMatch="true">
<serverUrls>
<!-- serverUrl options:
url = location of the ArcGIS Server, either specific URL or stem
matchAll = true to forward any request beginning with the url
token = (optional) token to include for secured service
dynamicToken = if true, gets token dynamically with username and
password stored in web.config file's appSettings section.
<serverUrl url="http://sampleserver1.arcgisonline.com/arcgis/rest/services/"
matchAll="true"></serverUrl>
<serverUrl url="http://sampleserver2.arcgisonline.com/arcgis/rest/services/"
matchAll="true"
token=""></serverUrl>
<serverUrl url="http://server.arcgisonline.com/arcgis/rest/services/"
matchAll="true"></serverUrl>
<serverUrl url="http://orthogonal.esri.com/arcgis/rest/services/"
matchAll="true"></serverUrl>
<serverUrl url="http://hummer/ArcGIS/rest/services"
matchAll="true"
dynamicToken="true"
></serverUrl>
-->
</serverUrls>
</ProxyConfig>