diff options
Diffstat (limited to '')
-rw-r--r-- | bin/config-include/GridCommon.ini.example | 20 | ||||
-rw-r--r-- | bin/config-include/StandaloneCommon.ini.example | 43 |
2 files changed, 61 insertions, 2 deletions
diff --git a/bin/config-include/GridCommon.ini.example b/bin/config-include/GridCommon.ini.example index 8d7f6fc..79f7ed6 100644 --- a/bin/config-include/GridCommon.ini.example +++ b/bin/config-include/GridCommon.ini.example | |||
@@ -137,6 +137,26 @@ | |||
137 | ;; uncomment the next line. You may want to do this on sims that have licensed content. | 137 | ;; uncomment the next line. You may want to do this on sims that have licensed content. |
138 | ; OutboundPermission = False | 138 | ; OutboundPermission = False |
139 | 139 | ||
140 | [HGAssetService] | ||
141 | ; | ||
142 | ; === HG ONLY === | ||
143 | ; Change this to your server | ||
144 | ; accessible from other grids | ||
145 | ; | ||
146 | HomeURI = "http://mygridserver.com:8002" | ||
147 | |||
148 | ;; The asset types that this grid can export to / import from other grids. | ||
149 | ;; Comma separated. | ||
150 | ;; Valid values are all the asset types in OpenMetaverse.AssetType, namely: | ||
151 | ;; Unknown, Texture, Sound, CallingCard, Landmark, Clothing, Object, Notecard, LSLText, | ||
152 | ;; LSLBytecode, TextureTGA, Bodypart, SoundWAV, ImageTGA, ImageJPEG, Animation, Gesture, Mesh | ||
153 | ;; | ||
154 | ;; Leave blank or commented if you don't want to apply any restrictions. | ||
155 | ;; A more strict, but still reasonable, policy may be to disallow the exchange | ||
156 | ;; of scripts, like so: | ||
157 | ; DisallowExport ="LSLText" | ||
158 | ; DisallowImport ="LSLBytecode" | ||
159 | |||
140 | [HGFriendsModule] | 160 | [HGFriendsModule] |
141 | ; User level required to be able to send friendship invitations to foreign users | 161 | ; User level required to be able to send friendship invitations to foreign users |
142 | ;LevelHGFriends = 0; | 162 | ;LevelHGFriends = 0; |
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" | ||