diff options
author | BlueWall | 2014-11-30 13:59:23 -0500 |
---|---|---|
committer | BlueWall | 2014-11-30 13:59:23 -0500 |
commit | 5f88ceab2269a0413b9a57674a0a1b097c374fd4 (patch) | |
tree | 2072c17da5a0473bfef2e2b839d074ff5b013f14 /bin/Robust.HG.ini.example | |
parent | Correct 690fe0c to actually log the exception reported in DoOnRezScriptQueue(... (diff) | |
download | opensim-SC-5f88ceab2269a0413b9a57674a0a1b097c374fd4.zip opensim-SC-5f88ceab2269a0413b9a57674a0a1b097c374fd4.tar.gz opensim-SC-5f88ceab2269a0413b9a57674a0a1b097c374fd4.tar.bz2 opensim-SC-5f88ceab2269a0413b9a57674a0a1b097c374fd4.tar.xz |
Set configuration files to use key expansion for widely used common settings.
Diffstat (limited to 'bin/Robust.HG.ini.example')
-rw-r--r-- | bin/Robust.HG.ini.example | 151 |
1 files changed, 87 insertions, 64 deletions
diff --git a/bin/Robust.HG.ini.example b/bin/Robust.HG.ini.example index fe2b4f9..8982b71 100644 --- a/bin/Robust.HG.ini.example +++ b/bin/Robust.HG.ini.example | |||
@@ -10,6 +10,29 @@ | |||
10 | ; * OpenSim.Server.Handlers.dll:XInventoryInConnector | 10 | ; * OpenSim.Server.Handlers.dll:XInventoryInConnector |
11 | ; * are started in port 8002, outside the firewall | 11 | ; * are started in port 8002, outside the firewall |
12 | ; * | 12 | ; * |
13 | ; ** | ||
14 | ; * | ||
15 | ; * The Const section allows us to define some basic information that we | ||
16 | ; * will use throughout our configuration. We will provide examples for | ||
17 | ; * setting the base url of the Robust server and the public and private ports | ||
18 | ; * it uses. Changing the values of the constants will set the operating | ||
19 | ; * parameters thoughout the configuration. Other constants that may prove | ||
20 | ; * to be useful may be added to the followin section. They may be | ||
21 | ; * referenced anywhere in the configuration by using ${Const|Name}. One | ||
22 | ; * such use is providing a base path for setting locations that Robust | ||
23 | ; * uses to write data. | ||
24 | ; * | ||
25 | [Const] | ||
26 | |||
27 | ; The URL of the Robust server | ||
28 | BaseURL = "http://127.0.0.1" | ||
29 | |||
30 | ; The public port of the Robust server | ||
31 | PublicPort = "8002" | ||
32 | |||
33 | ; The private port of the Robust server | ||
34 | PrivatePort = "8003" | ||
35 | |||
13 | ; * The startup section lists all the connectors to start up in this server | 36 | ; * The startup section lists all the connectors to start up in this server |
14 | ; * instance. This may be only one, or it may be the entire server suite. | 37 | ; * instance. This may be only one, or it may be the entire server suite. |
15 | ; * Multiple connectors should be separated by commas. | 38 | ; * Multiple connectors should be separated by commas. |
@@ -49,52 +72,52 @@ | |||
49 | 72 | ||
50 | 73 | ||
51 | [ServiceList] | 74 | [ServiceList] |
52 | AssetServiceConnector = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector" | 75 | AssetServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AssetServiceConnector" |
53 | InventoryInConnector = "8003/OpenSim.Server.Handlers.dll:XInventoryInConnector" | 76 | InventoryInConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:XInventoryInConnector" |
54 | ;; Uncomment if you have set up Freeswitch (see [FreeswitchService] below) | 77 | ;; Uncomment if you have set up Freeswitch (see [FreeswitchService] below) |
55 | ;VoiceConnector = "8004/OpenSim.Server.Handlers.dll:FreeswitchServerConnector" | 78 | ;VoiceConnector = "8004/OpenSim.Server.Handlers.dll:FreeswitchServerConnector" |
56 | GridServiceConnector = "8003/OpenSim.Server.Handlers.dll:GridServiceConnector" | 79 | GridServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:GridServiceConnector" |
57 | GridInfoServerInConnector = "8002/OpenSim.Server.Handlers.dll:GridInfoServerInConnector" | 80 | GridInfoServerInConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:GridInfoServerInConnector" |
58 | AuthenticationServiceConnector = "8003/OpenSim.Server.Handlers.dll:AuthenticationServiceConnector" | 81 | AuthenticationServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AuthenticationServiceConnector" |
59 | OpenIdServerConnector = "8002/OpenSim.Server.Handlers.dll:OpenIdServerConnector" | 82 | OpenIdServerConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:OpenIdServerConnector" |
60 | AvatarServiceConnector = "8003/OpenSim.Server.Handlers.dll:AvatarServiceConnector" | 83 | AvatarServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AvatarServiceConnector" |
61 | LLLoginServiceInConnector = "8002/OpenSim.Server.Handlers.dll:LLLoginServiceInConnector" | 84 | LLLoginServiceInConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:LLLoginServiceInConnector" |
62 | PresenceServiceConnector = "8003/OpenSim.Server.Handlers.dll:PresenceServiceConnector" | 85 | PresenceServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:PresenceServiceConnector" |
63 | UserAccountServiceConnector = "8003/OpenSim.Server.Handlers.dll:UserAccountServiceConnector" | 86 | UserAccountServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:UserAccountServiceConnector" |
64 | GridUserServiceConnector = "8003/OpenSim.Server.Handlers.dll:GridUserServiceConnector" | 87 | GridUserServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:GridUserServiceConnector" |
65 | FriendsServiceConnector = "8003/OpenSim.Server.Handlers.dll:FriendsServiceConnector" | 88 | FriendsServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:FriendsServiceConnector" |
66 | MapAddServiceConnector = "8003/OpenSim.Server.Handlers.dll:MapAddServiceConnector" | 89 | MapAddServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:MapAddServiceConnector" |
67 | MapGetServiceConnector = "8002/OpenSim.Server.Handlers.dll:MapGetServiceConnector" | 90 | MapGetServiceConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:MapGetServiceConnector" |
68 | ;; Uncomment this if you want offline IM to work | 91 | ;; Uncomment this if you want offline IM to work |
69 | ; OfflineIMServiceConnector = "8003/OpenSim.Addons.OfflineIM.dll:OfflineIMServiceRobustConnector" | 92 | ; OfflineIMServiceConnector = "${Const|PrivatePort}/OpenSim.Addons.OfflineIM.dll:OfflineIMServiceRobustConnector" |
70 | ;; Uncomment this if you want Groups V2 to work | 93 | ;; Uncomment this if you want Groups V2 to work |
71 | ; GroupsServiceConnector = "8003/OpenSim.Addons.Groups.dll:GroupsServiceRobustConnector" | 94 | ; GroupsServiceConnector = "${Const|PrivatePort}/OpenSim.Addons.Groups.dll:GroupsServiceRobustConnector" |
72 | ;; Uncomment to provide bakes caching | 95 | ;; Uncomment to provide bakes caching |
73 | ;BakedTextureService = "8003/OpenSim.Server.Handlers.dll:XBakesConnector" | 96 | ;BakedTextureService = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:XBakesConnector" |
74 | 97 | ||
75 | ;; Additions for Hypergrid | 98 | ;; Additions for Hypergrid |
76 | 99 | ||
77 | GatekeeperServiceInConnector = "8002/OpenSim.Server.Handlers.dll:GatekeeperServiceInConnector" | 100 | GatekeeperServiceInConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:GatekeeperServiceInConnector" |
78 | UserAgentServerConnector = "8002/OpenSim.Server.Handlers.dll:UserAgentServerConnector" | 101 | UserAgentServerConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:UserAgentServerConnector" |
79 | HeloServiceInConnector = "8002/OpenSim.Server.Handlers.dll:HeloServiceInConnector" | 102 | HeloServiceInConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:HeloServiceInConnector" |
80 | HGFriendsServerConnector = "8002/OpenSim.Server.Handlers.dll:HGFriendsServerConnector" | 103 | HGFriendsServerConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:HGFriendsServerConnector" |
81 | InstantMessageServerConnector = "8002/OpenSim.Server.Handlers.dll:InstantMessageServerConnector" | 104 | InstantMessageServerConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:InstantMessageServerConnector" |
82 | HGInventoryServiceConnector = "HGInventoryService@8002/OpenSim.Server.Handlers.dll:XInventoryInConnector" | 105 | HGInventoryServiceConnector = "HGInventoryService@${Const|PublicPort}/OpenSim.Server.Handlers.dll:XInventoryInConnector" |
83 | HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:AssetServiceConnector" | 106 | HGAssetServiceConnector = "HGAssetService@${Const|PublicPort}/OpenSim.Server.Handlers.dll:AssetServiceConnector" |
84 | ;; Uncomment this if you want Groups V2, HG to work | 107 | ;; Uncomment this if you want Groups V2, HG to work |
85 | ; HGGroupsServiceConnector = "8002/OpenSim.Addons.Groups.dll:HGGroupsServiceRobustConnector" | 108 | ; HGGroupsServiceConnector = "${Const|PublicPort}/OpenSim.Addons.Groups.dll:HGGroupsServiceRobustConnector" |
86 | ;; Additions for other add-on modules. For example: | 109 | ;; Additions for other add-on modules. For example: |
87 | ;; WifiServerConnector = "8002/Diva.Wifi.dll:WifiServerConnector" | 110 | ;; WifiServerConnector = "${Const|PublicPort}/Diva.Wifi.dll:WifiServerConnector" |
88 | 111 | ||
89 | ;; Uncomment for UserProfiles see [UserProfilesService] to configure... | 112 | ;; Uncomment for UserProfiles see [UserProfilesService] to configure... |
90 | ; UserProfilesServiceConnector = "8002/OpenSim.Server.Handlers.dll:UserProfilesConnector" | 113 | ; UserProfilesServiceConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:UserProfilesConnector" |
91 | 114 | ||
92 | 115 | ||
93 | ; * This is common for all services, it's the network setup for the entire | 116 | ; * This is common for all services, it's the network setup for the entire |
94 | ; * server instance, if none is specified above | 117 | ; * server instance, if none is specified above |
95 | ; * | 118 | ; * |
96 | [Network] | 119 | [Network] |
97 | port = 8003 | 120 | port = ${Const|PrivatePort} |
98 | 121 | ||
99 | ; HTTPS for "Out of band" management applications such as the remote admin | 122 | ; HTTPS for "Out of band" management applications such as the remote admin |
100 | ; module. May specify https_main = True to make the main http server | 123 | ; module. May specify https_main = True to make the main http server |
@@ -116,7 +139,7 @@ | |||
116 | ; cert_pass = "password" | 139 | ; cert_pass = "password" |
117 | 140 | ||
118 | ;; The follow 3 variables are for HTTP Basic Authentication for the Robust services. | 141 | ;; The follow 3 variables are for HTTP Basic Authentication for the Robust services. |
119 | ;; Use this if your central services in port 8003 need to be accessible on the Internet | 142 | ;; Use this if your central services in port ${Const|PrivatePort} need to be accessible on the Internet |
120 | ;; but you want to protect them from unauthorized access. | 143 | ;; but you want to protect them from unauthorized access. |
121 | ; AuthType = "BasicHttpAuthentication" | 144 | ; AuthType = "BasicHttpAuthentication" |
122 | ; HttpAuthUsername = "some_username" | 145 | ; HttpAuthUsername = "some_username" |
@@ -142,16 +165,16 @@ | |||
142 | ;# {HomeURI} {Hypergrid} {The Home URL of this world} {} | 165 | ;# {HomeURI} {Hypergrid} {The Home URL of this world} {} |
143 | ;; This is the address of the external robust server that | 166 | ;; This is the address of the external robust server that |
144 | ;; runs the UserAgentsService, possibly this server. | 167 | ;; runs the UserAgentsService, possibly this server. |
145 | ;; For example http://myworld.com:8002 | 168 | ;; For example http://myworld.com:${Const|PublicPort} |
146 | ;; This is a default that can be overwritten in some sections. | 169 | ;; This is a default that can be overwritten in some sections. |
147 | ; HomeURI = "http://127.0.0.1:8002" | 170 | ; HomeURI = "${Const|BaseURL}:${Const|PublicPort}" |
148 | 171 | ||
149 | ;# {GatekeeperURI} {Hypergrid} {The URL of the gatekeeper of this world} {} | 172 | ;# {GatekeeperURI} {Hypergrid} {The URL of the gatekeeper of this world} {} |
150 | ;; This is the address of the external robust server | 173 | ;; This is the address of the external robust server |
151 | ;; that runs the Gatekeeper service, possibly this server. | 174 | ;; that runs the Gatekeeper service, possibly this server. |
152 | ;; For example http://myworld.com:8002 | 175 | ;; For example http://myworld.com:${Const|PublicPort} |
153 | ;; This is a default that can be overwritten in some sections. | 176 | ;; This is a default that can be overwritten in some sections. |
154 | ; GatekeeperURI = "http://127.0.0.1:8002" | 177 | ; GatekeeperURI = "${Const|BaseURL}:${Const|PublicPort}" |
155 | 178 | ||
156 | 179 | ||
157 | [DatabaseService] | 180 | [DatabaseService] |
@@ -236,7 +259,7 @@ | |||
236 | ExportSupported = true | 259 | ExportSupported = true |
237 | 260 | ||
238 | ;; If you have this set under [Hypergrid], no need to set it here, leave it commented | 261 | ;; If you have this set under [Hypergrid], no need to set it here, leave it commented |
239 | ; GatekeeperURI = "http://127.0.0.1:8002" | 262 | ; GatekeeperURI = "http://127.0.0.1:${Const|PublicPort}" |
240 | 263 | ||
241 | 264 | ||
242 | ; * This is the configuration for the freeswitch server in grid mode | 265 | ; * This is the configuration for the freeswitch server in grid mode |
@@ -390,31 +413,31 @@ | |||
390 | AllowRemoteSetLoginLevel = "false" | 413 | AllowRemoteSetLoginLevel = "false" |
391 | 414 | ||
392 | ; For V2 map | 415 | ; For V2 map |
393 | MapTileURL = "http://127.0.0.1:8002/"; | 416 | MapTileURL = "${Const|BaseURL}:${Const|PublicPort}/"; |
394 | 417 | ||
395 | ; Url to search service | 418 | ; Url to search service |
396 | ; SearchURL = "http://127.0.0.1:8002/"; | 419 | ; SearchURL = "${Const|BaseURL}:${Const|PublicPort}/"; |
397 | 420 | ||
398 | ; For V3 destination guide | 421 | ; For V3 destination guide |
399 | ; DestinationGuide = "http://127.0.0.1/guide" | 422 | ; DestinationGuide = "${Const|BaseURL}/guide" |
400 | 423 | ||
401 | ; For V3 avatar picker (( work in progress )) | 424 | ; For V3 avatar picker (( work in progress )) |
402 | ; AvatarPicker = "http://127.0.0.1/avatars" | 425 | ; AvatarPicker = "${Const|BaseURL}/avatars" |
403 | 426 | ||
404 | ; If you run this login server behind a proxy, set this to true | 427 | ; If you run this login server behind a proxy, set this to true |
405 | ; HasProxy = false | 428 | ; HasProxy = false |
406 | 429 | ||
407 | ; Defaults for the users, if none is specified in the useraccounts table entry (ServiceURLs) | 430 | ; Defaults for the users, if none is specified in the useraccounts table entry (ServiceURLs) |
408 | ;; If you have GatekeeperURI set under [Hypergrid], no need to set it here, leave it commented | 431 | ;; If you have GatekeeperURI set under [Hypergrid], no need to set it here, leave it commented |
409 | ; GatekeeperURI = "http://127.0.0.1:8002" | 432 | ; GatekeeperURI = "${Const|BaseURL}:${Const|PublicPort}" |
410 | 433 | ||
411 | SRV_HomeURI = "http://127.0.0.1:8002" | 434 | SRV_HomeURI = "${Const|BaseURL}:${Const|PublicPort}" |
412 | SRV_InventoryServerURI = "http://127.0.0.1:8002" | 435 | SRV_InventoryServerURI = "${Const|BaseURL}:${Const|PublicPort}" |
413 | SRV_AssetServerURI = "http://127.0.0.1:8002" | 436 | SRV_AssetServerURI = "${Const|BaseURL}:${Const|PublicPort}" |
414 | SRV_ProfileServerURI = "http://127.0.0.1:8002" | 437 | SRV_ProfileServerURI = "${Const|BaseURL}:${Const|PublicPort}" |
415 | SRV_FriendsServerURI = "http://127.0.0.1:8002" | 438 | SRV_FriendsServerURI = "${Const|BaseURL}:${Const|PublicPort}" |
416 | SRV_IMServerURI = "http://127.0.0.1:8002" | 439 | SRV_IMServerURI = "${Const|BaseURL}:${Const|PublicPort}" |
417 | SRV_GroupsServerURI = "http://127.0.0.1:8002" | 440 | SRV_GroupsServerURI = "${Const|BaseURL}:${Const|PublicPort}" |
418 | 441 | ||
419 | ;; Regular expressions for controlling which client versions are accepted/denied. | 442 | ;; Regular expressions for controlling which client versions are accepted/denied. |
420 | ;; An empty string means nothing is checked. | 443 | ;; An empty string means nothing is checked. |
@@ -452,7 +475,7 @@ | |||
452 | ; Set this if you want to change the default | 475 | ; Set this if you want to change the default |
453 | ; TilesStoragePath = "maptiles" | 476 | ; TilesStoragePath = "maptiles" |
454 | ; | 477 | ; |
455 | ; If for some reason you have the AddMapTile service outside the firewall (e.g. 8002), | 478 | ; If for some reason you have the AddMapTile service outside the firewall (e.g. ${Const|PublicPort}), |
456 | ; you may want to set this. Otherwise, don't set it, because it's already protected. | 479 | ; you may want to set this. Otherwise, don't set it, because it's already protected. |
457 | ; GridService = "OpenSim.Services.GridService.dll:GridService" | 480 | ; GridService = "OpenSim.Services.GridService.dll:GridService" |
458 | ; | 481 | ; |
@@ -470,7 +493,7 @@ | |||
470 | ; See http://opensimulator.org/wiki/GridInfo | 493 | ; See http://opensimulator.org/wiki/GridInfo |
471 | 494 | ||
472 | ; login uri: for grid this is the login server URI | 495 | ; login uri: for grid this is the login server URI |
473 | login = http://127.0.0.1:8002/ | 496 | login = ${Const|BaseURL}:${Const|PublicPort}/ |
474 | 497 | ||
475 | ; long grid name: the long name of your grid | 498 | ; long grid name: the long name of your grid |
476 | gridname = "the lost continent of hippo" | 499 | gridname = "the lost continent of hippo" |
@@ -480,32 +503,32 @@ | |||
480 | 503 | ||
481 | ; login page: optional: if it exists it will be used to tell the client to use | 504 | ; login page: optional: if it exists it will be used to tell the client to use |
482 | ; this as splash page | 505 | ; this as splash page |
483 | ;welcome = http://127.0.0.1/welcome | 506 | ;welcome = ${Const|BaseURL}/welcome |
484 | 507 | ||
485 | ; helper uri: optional: if it exists if will be used to tell the client to use | 508 | ; helper uri: optional: if it exists if will be used to tell the client to use |
486 | ; this for all economy related things | 509 | ; this for all economy related things |
487 | ;economy = http://127.0.0.1:8002/ | 510 | ;economy = ${Const|BaseURL}:${Const|PublicPort}/ |
488 | 511 | ||
489 | ; web page of grid: optional: page providing further information about your grid | 512 | ; web page of grid: optional: page providing further information about your grid |
490 | ;about = http://127.0.0.1/about/ | 513 | ;about = ${Const|BaseURL}/about/ |
491 | 514 | ||
492 | ; account creation: optional: page providing further information about obtaining | 515 | ; account creation: optional: page providing further information about obtaining |
493 | ; a user account on your grid | 516 | ; a user account on your grid |
494 | ;register = http://127.0.0.1/register | 517 | ;register = ${Const|BaseURL}/register |
495 | 518 | ||
496 | ; help: optional: page providing further assistance for users of your grid | 519 | ; help: optional: page providing further assistance for users of your grid |
497 | ;help = http://127.0.0.1/help | 520 | ;help = ${Const|BaseURL}/help |
498 | 521 | ||
499 | ; password help: optional: page providing password assistance for users of your grid | 522 | ; password help: optional: page providing password assistance for users of your grid |
500 | ;password = http://127.0.0.1/password | 523 | ;password = ${Const|BaseURL}/password |
501 | 524 | ||
502 | ; HG address of the gatekeeper, if you have one | 525 | ; HG address of the gatekeeper, if you have one |
503 | ; this is the entry point for all the regions of the world | 526 | ; this is the entry point for all the regions of the world |
504 | ; gatekeeper = http://127.0.0.1:8002/ | 527 | ; gatekeeper = ${Const|BaseURL}:${Const|PublicPort}/ |
505 | 528 | ||
506 | ; HG user domain, if you have one | 529 | ; HG user domain, if you have one |
507 | ; this is the entry point for all user-related HG services | 530 | ; this is the entry point for all user-related HG services |
508 | ; uas = http://127.0.0.1:8002/ | 531 | ; uas = ${Const|BaseURL}:${Const|PublicPort}/ |
509 | 532 | ||
510 | 533 | ||
511 | [GatekeeperService] | 534 | [GatekeeperService] |
@@ -520,7 +543,7 @@ | |||
520 | SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector" | 543 | SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector" |
521 | ; how does the outside world reach me? This acts as public key too. | 544 | ; how does the outside world reach me? This acts as public key too. |
522 | ;; If you have GatekeeperURI set under [Hypergrid], no need to set it here, leave it commented | 545 | ;; If you have GatekeeperURI set under [Hypergrid], no need to set it here, leave it commented |
523 | ; ExternalName = "http://127.0.0.1:8002" | 546 | ; ExternalName = "${Const|BaseURL}:${Const|PublicPort}" |
524 | 547 | ||
525 | ; Does this grid allow incoming links to any region in it? | 548 | ; Does this grid allow incoming links to any region in it? |
526 | ; If false, HG TPs happen only to the Default regions specified in [GridService] section | 549 | ; If false, HG TPs happen only to the Default regions specified in [GridService] section |
@@ -551,11 +574,11 @@ | |||
551 | ;; | 574 | ;; |
552 | ;; If ForeignAgentsAllowed is true, make exceptions using AllowExcept. | 575 | ;; If ForeignAgentsAllowed is true, make exceptions using AllowExcept. |
553 | ;; Leave blank or commented for no exceptions. | 576 | ;; Leave blank or commented for no exceptions. |
554 | ; AllowExcept = "http://griefer.com:8002, http://enemy.com:8002" | 577 | ; AllowExcept = "http://griefer.com:${Const|PublicPort}, http://enemy.com:8002" |
555 | ;; | 578 | ;; |
556 | ;; If ForeignAgentsAllowed is false, make exceptions using DisallowExcept | 579 | ;; If ForeignAgentsAllowed is false, make exceptions using DisallowExcept |
557 | ;; Leave blank or commented for no exceptions. | 580 | ;; Leave blank or commented for no exceptions. |
558 | ; DisallowExcept = "http://myfriendgrid.com:8002, http://myboss.com:8002" | 581 | ; DisallowExcept = "http://myfriendgrid.com:${Const|PublicPort}, http://myboss.com:8002" |
559 | 582 | ||
560 | 583 | ||
561 | [UserAgentService] | 584 | [UserAgentService] |
@@ -589,11 +612,11 @@ | |||
589 | ;; | 612 | ;; |
590 | ;; If ForeignTripsAllowed is false, make exceptions using DisallowExcept | 613 | ;; If ForeignTripsAllowed is false, make exceptions using DisallowExcept |
591 | ;; Leave blank or commented for no exceptions. | 614 | ;; Leave blank or commented for no exceptions. |
592 | ; DisallowExcept_Level_0 = "http://myothergrid.com:8002, http://boss.com:8002" | 615 | ; DisallowExcept_Level_0 = "http://myothergrid.com:${Const|PublicPort}, http://boss.com:8002" |
593 | ;; | 616 | ;; |
594 | ;; If ForeignTripsAllowed is true, make exceptions using AllowExcept. | 617 | ;; If ForeignTripsAllowed is true, make exceptions using AllowExcept. |
595 | ;; Leave blank or commented for no exceptions. | 618 | ;; Leave blank or commented for no exceptions. |
596 | ; AllowExcept_Level_200 = "http://griefer.com:8002, http://enemy.com:8002" | 619 | ; AllowExcept_Level_200 = "http://griefer.com:${Const|PublicPort}, http://enemy.com:8002" |
597 | 620 | ||
598 | ;; This variable controls what is exposed to profiles of local users | 621 | ;; This variable controls what is exposed to profiles of local users |
599 | ;; as seen from outside of this grid. Leave it uncommented for exposing | 622 | ;; as seen from outside of this grid. Leave it uncommented for exposing |
@@ -621,7 +644,7 @@ | |||
621 | AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService" | 644 | AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService" |
622 | 645 | ||
623 | ;; Can overwrite the default in [Hypergrid], but probably shouldn't | 646 | ;; Can overwrite the default in [Hypergrid], but probably shouldn't |
624 | ; HomeURI = "http://127.0.0.1:8002" | 647 | ; HomeURI = "${Const|BaseURL}:${Const|PublicPort}" |
625 | 648 | ||
626 | 649 | ||
627 | ; * The interface that local users get when they are in other grids. | 650 | ; * The interface that local users get when they are in other grids. |
@@ -633,7 +656,7 @@ | |||
633 | UserAccountsService = "OpenSim.Services.UserAccountService.dll:UserAccountService" | 656 | UserAccountsService = "OpenSim.Services.UserAccountService.dll:UserAccountService" |
634 | 657 | ||
635 | ;; Can overwrite the default in [Hypergrid], but probably shouldn't | 658 | ;; Can overwrite the default in [Hypergrid], but probably shouldn't |
636 | ; HomeURI = "http://127.0.0.1:8002" | 659 | ; HomeURI = "${Const|BaseURL}:${Const|PublicPort}" |
637 | 660 | ||
638 | ;; The asset types that this grid can export to / import from other grids. | 661 | ;; The asset types that this grid can export to / import from other grids. |
639 | ;; Comma separated. | 662 | ;; Comma separated. |
@@ -678,7 +701,7 @@ | |||
678 | 701 | ||
679 | ;; What is the HomeURI of users associated with this grid? | 702 | ;; What is the HomeURI of users associated with this grid? |
680 | ;; Can overwrite the default in [Hypergrid], but probably shouldn't | 703 | ;; Can overwrite the default in [Hypergrid], but probably shouldn't |
681 | ; HomeURI = "http://127.0.0.1:8002" | 704 | ; HomeURI = "${Const|BaseURL}:${Const|PublicPort}" |
682 | 705 | ||
683 | 706 | ||
684 | [UserProfilesService] | 707 | [UserProfilesService] |