diff options
Diffstat (limited to 'bin/config.preview.donotuseyet-v2/defaults/external.ini.defaults')
-rw-r--r-- | bin/config.preview.donotuseyet-v2/defaults/external.ini.defaults | 183 |
1 files changed, 0 insertions, 183 deletions
diff --git a/bin/config.preview.donotuseyet-v2/defaults/external.ini.defaults b/bin/config.preview.donotuseyet-v2/defaults/external.ini.defaults deleted file mode 100644 index e83078a..0000000 --- a/bin/config.preview.donotuseyet-v2/defaults/external.ini.defaults +++ /dev/null | |||
@@ -1,183 +0,0 @@ | |||
1 | ; Settings that control the exposure of data externally. | ||
2 | |||
3 | |||
4 | [DataSnapshot] | ||
5 | ; The following set of configs pertains to search. | ||
6 | ; Set index_sims to true to enable search engines to index your searchable data | ||
7 | ; If false, no data will be exposed, DataSnapshot module will be off, and you can ignore the rest of these search-related configs | ||
8 | ; default is false | ||
9 | index_sims = false | ||
10 | |||
11 | ; The variable data_exposure controls what the regions expose: | ||
12 | ; minimum: exposes only things explicitly marked for search | ||
13 | ; all: exposes everything | ||
14 | data_exposure = minimum | ||
15 | |||
16 | ; If search is on, change this to your grid name; will be ignored for standalones | ||
17 | gridname = "OSGrid" | ||
18 | |||
19 | ; Period between data snapshots, in seconds. 20 minutes, for starters, so that you see the initial changes fast. | ||
20 | ; Later, you may want to increase this to 3600 (1 hour) or more | ||
21 | default_snapshot_period = 1200 | ||
22 | |||
23 | ; This will be created in bin, if it doesn't exist already. It will hold the data snapshots. | ||
24 | snapshot_cache_directory = "DataSnapshot" | ||
25 | |||
26 | ; This semicolon-separated string serves to notify specific data services about the existence | ||
27 | ; of this sim. Uncomment if you want to index your data with this and/or other search providers. | ||
28 | ;data_services="http://metaverseink.com/cgi-bin/register.py" | ||
29 | |||
30 | |||
31 | [GridInfo] | ||
32 | ; These settings are used to return information on a get_grid_info call. | ||
33 | ; Client launcher scripts and third-party clients make use of this to | ||
34 | ; autoconfigure the client and to provide a nice user experience. If you | ||
35 | ; want to facilitate that, you should configure the settings here according | ||
36 | ; to your grid or standalone setup. | ||
37 | ; | ||
38 | ; See http://opensimulator.org/wiki/GridInfo | ||
39 | |||
40 | ; login uri: for grid this is the user server URI | ||
41 | login = http://127.0.0.1:9000/ | ||
42 | |||
43 | ; long grid name: the long name of your grid | ||
44 | gridname = "the lost continent of hippo" | ||
45 | |||
46 | ; short grid name: the short name of your grid | ||
47 | gridnick = "hippogrid" | ||
48 | |||
49 | ; login page: optional: if it exists it will be used to tell the client to use | ||
50 | ; this as splash page | ||
51 | ; currently unused | ||
52 | ;welcome = http://127.0.0.1/welcome | ||
53 | |||
54 | ; helper uri: optional: if it exists if will be used to tell the client to use | ||
55 | ; this for all economy related things | ||
56 | ; currently unused | ||
57 | ;economy = http://127.0.0.1:9000/ | ||
58 | |||
59 | ; web page of grid: optional: page providing further information about your grid | ||
60 | ; currently unused | ||
61 | ;about = http://127.0.0.1/about/ | ||
62 | |||
63 | ; account creation: optional: page providing further information about obtaining | ||
64 | ; a user account on your grid | ||
65 | ; currently unused | ||
66 | ;register = http://127.0.0.1/register | ||
67 | |||
68 | ; help: optional: page providing further assistance for users of your grid | ||
69 | ; currently unused | ||
70 | ;help = http://127.0.0.1/help | ||
71 | |||
72 | ; password help: optional: page providing password assistance for users of your grid | ||
73 | ; currently unused | ||
74 | ;password = http://127.0.0.1/password | ||
75 | |||
76 | |||
77 | ; Uncomment the following for IRC bridge | ||
78 | ; experimental, so if it breaks... keep both parts... yada yada | ||
79 | ; also, not good error detection when it fails | ||
80 | ;[IRC] | ||
81 | ;enabled = true ; you need to set this otherwise it won't connect | ||
82 | ;server = name.of.irc.server.on.the.net | ||
83 | ;; user password - only use this if the server requires one | ||
84 | ;password = mypass | ||
85 | ;nick = OpenSimBotNameProbablyMakeThisShorter | ||
86 | ;channel = #the_irc_channel_you_want_to_connect_to | ||
87 | ;port = 6667 | ||
88 | ;; channel to listen for configuration commands | ||
89 | ;commands_enabled = false | ||
90 | ;command_channel = 2777 | ||
91 | ;report_clients = true | ||
92 | ;; relay private chat connections | ||
93 | ;; relay_private_channels = true: will relay IRC chat from/to private in-world channels | ||
94 | ;; relay_private_channel_out -- channel to send messages out to the IRC bridge | ||
95 | ;; relay_private_channel_in -- channel to receive message from the IRC bridge | ||
96 | ;; relay_chat = false: IRC bridge will not relay normal chat | ||
97 | ;; access_password -- simple security device | ||
98 | ;; | ||
99 | ;; so, to just relay chat from an IRC channel to in-world region and vice versa: | ||
100 | ;; | ||
101 | ;; relay_private_channels = false | ||
102 | ;; relay_chat = true | ||
103 | ;; | ||
104 | ;; to relay chat only to/from private in-world channels: | ||
105 | ;; | ||
106 | ;; relay_chat = false | ||
107 | ;; relay_private_channels = true | ||
108 | ;; relay_private_channel_in = 2226 | ||
109 | ;; relay_private_channel_out = 2225 | ||
110 | ;; | ||
111 | ;; in this example, all chat coming in from IRC will be send out via | ||
112 | ;; in-world channel 2226, and all chat from in-world channel 2225 will | ||
113 | ;; be relayed to the IRC channel. | ||
114 | ;; | ||
115 | ;relay_private_channels = false | ||
116 | ;relay_private_channel_in = 2226 | ||
117 | ;relay_private_channel_out = 2225 | ||
118 | ;relay_chat = true | ||
119 | ;access_password = foobar | ||
120 | |||
121 | ;fallback_region = name of "default" region | ||
122 | ;MSGformat fields : 0=botnick, 1=user, 2=region, 3=message | ||
123 | ; must start with "PRIVMSG {0} : " or irc server will get upset | ||
124 | ;for <bot>:<user in region> :<message> | ||
125 | ;msgformat = "PRIVMSG {0} :<{1} in {2}>: {3}" | ||
126 | ;for <bot>:<message> - <user of region> : | ||
127 | msgformat = "PRIVMSG {0} : {3} - {1} of {2}" | ||
128 | ;for <bot>:<message> - from <user> : | ||
129 | ;msgformat = "PRIVMSG {0} : {3} - from {1}" | ||
130 | |||
131 | |||
132 | [RemoteAdmin] | ||
133 | enabled = false | ||
134 | access_password = unknown | ||
135 | |||
136 | ; the create_region XmlRpc call uses region_file_template to generate | ||
137 | ; the file name of newly create regions (if they are created | ||
138 | ; persistent). the parameter available are: | ||
139 | ; {0} - X location | ||
140 | ; {1} - Y location | ||
141 | ; {2} - region UUID | ||
142 | ; {3} - region port | ||
143 | ; {4} - region name with " ", ":", "/" mapped to "_" | ||
144 | |||
145 | region_file_template = "{0}x{1}-{2}.xml" | ||
146 | |||
147 | ; we can limit the number of regions that XmlRpcCreateRegion will | ||
148 | ; allow by setting this to a positive, non-0 number: as long as the | ||
149 | ; number of regions is below region_limits, XmlRpcCreateRegion will | ||
150 | ; succeed. setting region_limit to 0 disables the check. | ||
151 | ; default is 0 | ||
152 | ;region_limit = 0 | ||
153 | |||
154 | ; enable only those methods you deem to be appropriate using a | delimited whitelist | ||
155 | ; for example, enabled_methods = admin_broadcast|admin_region_query|admin_save_oar|admin_save_xml | ||
156 | ; if this parameter is not specified but enabled = true, all methods will be available | ||
157 | enabled_methods = all | ||
158 | |||
159 | |||
160 | [RestPlugins] | ||
161 | ; Change this to true to enable REST Plugins. This must be true if you wish to use | ||
162 | ; REST Region or REST Asset and Inventory Plugins | ||
163 | enabled = false | ||
164 | god_key = SECRET | ||
165 | prefix = /admin | ||
166 | |||
167 | |||
168 | [RestRegionPlugin] | ||
169 | ; Change this to true to enable the REST Region Plugin | ||
170 | enabled = false | ||
171 | |||
172 | |||
173 | [RestHandler] | ||
174 | ; Change this to true to enable the REST Asset and Inventory Plugin | ||
175 | enabled = false | ||
176 | authenticate=true | ||
177 | secured=true | ||
178 | extended-escape=true | ||
179 | realm=OpenSim REST | ||
180 | dump-asset=false | ||
181 | path-fill=true | ||
182 | dump-line-size=32 | ||
183 | flush-on-error=true | ||