aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/share/RegionLoading
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--share/RegionLoading/HOWTO_REMOTE_REGION_LOADING.txt9
-rw-r--r--share/RegionLoading/example_web.xml26
2 files changed, 35 insertions, 0 deletions
diff --git a/share/RegionLoading/HOWTO_REMOTE_REGION_LOADING.txt b/share/RegionLoading/HOWTO_REMOTE_REGION_LOADING.txt
new file mode 100644
index 0000000..75afcdf
--- /dev/null
+++ b/share/RegionLoading/HOWTO_REMOTE_REGION_LOADING.txt
@@ -0,0 +1,9 @@
1The remote region loading ability allows easier management of what regions a simulator run s from a webserver.
2In OpenSim.ini, change the 'region_info_source = filesystem' under [Startup] to 'region_info_source = web'.
3Then change the line 'regionload_webserver_url = ' to 'regionload_webserver_url = http://127.0.0.1/default.xml'
4replacing 'http://127.0.0.1/default.xml' with the URL of the region XML file.
5
6The XML file of a remote region is similar to the filesystem version, except it is in one file instead of multiple
7region_xxx.xml files.
8
9See example_web.xml for an example on how to make a web version for region loading. \ No newline at end of file
diff --git a/share/RegionLoading/example_web.xml b/share/RegionLoading/example_web.xml
new file mode 100644
index 0000000..39e8023
--- /dev/null
+++ b/share/RegionLoading/example_web.xml
@@ -0,0 +1,26 @@
1<Nini>
2 <Section Name="OpenSim Test">
3 <Key Name="RegionUUID" Value="e3be865f-35b6-4f7c-9aea-9ab017b07635"/>
4 <Key Name="InternalAddress" Value="0.0.0.0"/>
5 <Key Name="InternalPort" Value="9000"/>
6 <Key Name="AllowAlternatePorts" Value="False"/>
7 <Key Name="ExternalHostName" Value="127.0.0.1"/>
8 <Key Name="ResolveAddress" Value="False"/>
9 <Key Name="Location" Value="1000,1000"/>
10 <Key Name="SizeX" Value="256"/>
11 <Key Name="SizeY" Value="256"/>
12 <Key Name="ClampPrimSize" Value="False"/>
13 </Section>
14 <Section Name="OpenSim Test2">
15 <Key Name="RegionUUID" Value="e3be865f-35b6-4f7c-9aea-9ab017b07636"/>
16 <Key Name="InternalAddress" Value="0.0.0.0"/>
17 <Key Name="InternalPort" Value="9001"/>
18 <Key Name="AllowAlternatePorts" Value="False"/>
19 <Key Name="ExternalHostName" Value="127.0.0.1"/>
20 <Key Name="ResolveAddress" Value="False"/>
21 <Key Name="Location" Value="1000,1001"/>
22 <Key Name="SizeX" Value="256"/>
23 <Key Name="SizeY" Value="256"/>
24 <Key Name="ClampPrimSize" Value="False"/>
25 </Section>
26</Nini> \ No newline at end of file