diff options
Diffstat (limited to 'bin/config-include/StandaloneCommon.ini.example')
-rw-r--r-- | bin/config-include/StandaloneCommon.ini.example | 43 |
1 files changed, 41 insertions, 2 deletions
diff --git a/bin/config-include/StandaloneCommon.ini.example b/bin/config-include/StandaloneCommon.ini.example index e4bc548..84de0ec 100644 --- a/bin/config-include/StandaloneCommon.ini.example +++ b/bin/config-include/StandaloneCommon.ini.example | |||
@@ -53,6 +53,19 @@ | |||
53 | [HGAssetService] | 53 | [HGAssetService] |
54 | HomeURI = "http://127.0.0.1:9000" | 54 | HomeURI = "http://127.0.0.1:9000" |
55 | 55 | ||
56 | ;; The asset types that this grid can export to / import from other grids. | ||
57 | ;; Comma separated. | ||
58 | ;; Valid values are all the asset types in OpenMetaverse.AssetType, namely: | ||
59 | ;; Unknown, Texture, Sound, CallingCard, Landmark, Clothing, Object, Notecard, LSLText, | ||
60 | ;; LSLBytecode, TextureTGA, Bodypart, SoundWAV, ImageTGA, ImageJPEG, Animation, Gesture, Mesh | ||
61 | ;; | ||
62 | ;; Leave blank or commented if you don't want to apply any restrictions. | ||
63 | ;; A more strict, but still reasonable, policy may be to disallow the exchange | ||
64 | ;; of scripts, like so: | ||
65 | ; DisallowExport ="LSLText" | ||
66 | ; DisallowImport ="LSLBytecode" | ||
67 | |||
68 | |||
56 | [HGInventoryAccessModule] | 69 | [HGInventoryAccessModule] |
57 | HomeURI = "http://127.0.0.1:9000" | 70 | HomeURI = "http://127.0.0.1:9000" |
58 | Gatekeeper = "http://127.0.0.1:9000" | 71 | Gatekeeper = "http://127.0.0.1:9000" |
@@ -151,8 +164,17 @@ | |||
151 | ;AllowedClients = "" | 164 | ;AllowedClients = "" |
152 | ;DeniedClients = "" | 165 | ;DeniedClients = "" |
153 | 166 | ||
154 | ;; Are foreign visitors allowed | 167 | ;; Are foreign visitors allowed? |
155 | ;ForeignAgentsAllowed = true | 168 | ;ForeignAgentsAllowed = true |
169 | ;; | ||
170 | ;; If ForeignAgentsAllowed is true, make exceptions using AllowExcept. | ||
171 | ;; Leave blank or commented for no exceptions. | ||
172 | ; AllowExcept = "http://griefer.com:8002, http://enemy.com:8002" | ||
173 | ;; | ||
174 | ;; If ForeignAgentsAllowed is false, make exceptions using DisallowExcept | ||
175 | ;; Leave blank or commented for no exceptions. | ||
176 | ; DisallowExcept = "http://myfriendgrid.com:8002, http://myboss.com:8002" | ||
177 | |||
156 | 178 | ||
157 | [FreeswitchService] | 179 | [FreeswitchService] |
158 | ;; If FreeSWITCH is not being used then you don't need to set any of these parameters | 180 | ;; If FreeSWITCH is not being used then you don't need to set any of these parameters |
@@ -258,5 +280,22 @@ | |||
258 | ; Region_Test_1 = "DisallowForeigners" | 280 | ; Region_Test_1 = "DisallowForeigners" |
259 | 281 | ||
260 | [UserAgentService] | 282 | [UserAgentService] |
261 | ; User level required to be contacted from other grids | 283 | ;; User level required to be contacted from other grids |
262 | ;LevelOutsideContacts = 0 | 284 | ;LevelOutsideContacts = 0 |
285 | |||
286 | ;; Restrictions on destinations of local users. | ||
287 | ;; Are local users allowed to visit other grids? | ||
288 | ;; What user level? Use variables of this forrm: | ||
289 | ;; ForeignTripsAllowed_Level_<UserLevel> = true | false | ||
290 | ;; (the default is true) | ||
291 | ;; For example: | ||
292 | ; ForeignTripsAllowed_Level_0 = false | ||
293 | ; ForeignTripsAllowed_Level_200 = true ; true is default, no need to say it | ||
294 | ;; | ||
295 | ;; If ForeignTripsAllowed is false, make exceptions using DisallowExcept | ||
296 | ;; Leave blank or commented for no exceptions. | ||
297 | ; DisallowExcept_Level_0 = "http://myothergrid.com:8002, http://boss.com:8002" | ||
298 | ;; | ||
299 | ;; If ForeignTripsAllowed is true, make exceptions using AllowExcept. | ||
300 | ;; Leave blank or commented for no exceptions. | ||
301 | ; AllowExcept_Level_200 = "http://griefer.com:8002, http://enemy.com:8002" | ||