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/config-include/GridCommon.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 '')
-rw-r--r-- | bin/config-include/GridCommon.ini.example | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/bin/config-include/GridCommon.ini.example b/bin/config-include/GridCommon.ini.example index 59eebd8..2c3df8d 100644 --- a/bin/config-include/GridCommon.ini.example +++ b/bin/config-include/GridCommon.ini.example | |||
@@ -40,17 +40,17 @@ | |||
40 | ;; If this is a standalone world, this is the address of this instance. | 40 | ;; If this is a standalone world, this is the address of this instance. |
41 | ;; If this is a grided simulator, this is the address of the external robust server that | 41 | ;; If this is a grided simulator, this is the address of the external robust server that |
42 | ;; runs the UserAgentsService. | 42 | ;; runs the UserAgentsService. |
43 | ;; For example http://myworld.com:9000 or http://myworld.com:8002 | 43 | ;; For example http://myworld.com:9000 or http://myworld.com:${Const|PublicPort} |
44 | ;; This is a default that can be overwritten in some sections. | 44 | ;; This is a default that can be overwritten in some sections. |
45 | ; HomeURI = "http://127.0.0.1:9000" | 45 | ; HomeURI = "${Const|BaseURL}:${Const|PublicPort}" |
46 | 46 | ||
47 | ;# {GatekeeperURI} {Hypergrid} {The URL of the gatekeeper of this world} {} | 47 | ;# {GatekeeperURI} {Hypergrid} {The URL of the gatekeeper of this world} {} |
48 | ;; If this is a standalone world, this is the address of this instance. | 48 | ;; If this is a standalone world, this is the address of this instance. |
49 | ;; If this is a grided simulator, this is the address of the external robust server | 49 | ;; If this is a grided simulator, this is the address of the external robust server |
50 | ;; that runs the Gatekeeper service. | 50 | ;; that runs the Gatekeeper service. |
51 | ;; For example http://myworld.com:9000 or http://myworld.com:8002 | 51 | ;; For example http://myworld.com:9000 or http://myworld.com:${Const|PublicPort} |
52 | ;; This is a default that can be overwritten in some sections. | 52 | ;; This is a default that can be overwritten in some sections. |
53 | ; GatekeeperURI = "http://127.0.0.1:9000" | 53 | ; GatekeeperURI = "${Const|BaseURL}:${Const|PublicPort}" |
54 | 54 | ||
55 | [Modules] | 55 | [Modules] |
56 | ;; Choose one cache module and the corresponding config file, if it exists. | 56 | ;; Choose one cache module and the corresponding config file, if it exists. |
@@ -78,25 +78,25 @@ | |||
78 | ; | 78 | ; |
79 | ; Change this to your grid-wide asset server. Do not add a slash to the end of any of these addresses. | 79 | ; Change this to your grid-wide asset server. Do not add a slash to the end of any of these addresses. |
80 | ; | 80 | ; |
81 | AssetServerURI = "http://mygridserver.com:8003" | 81 | AssetServerURI = "${Const|BaseURL}:${Const|PrivatePort}" |
82 | 82 | ||
83 | [InventoryService] | 83 | [InventoryService] |
84 | ; | 84 | ; |
85 | ; Change this to your grid-wide inventory server | 85 | ; Change this to your grid-wide inventory server |
86 | ; | 86 | ; |
87 | InventoryServerURI = "http://mygridserver.com:8003" | 87 | InventoryServerURI = "${Const|BaseURL}:${Const|PrivatePort}" |
88 | 88 | ||
89 | [GridInfo] | 89 | [GridInfo] |
90 | ; | 90 | ; |
91 | ; Change this to your grid info service | 91 | ; Change this to your grid info service |
92 | ; | 92 | ; |
93 | GridInfoURI = "http://mygridserver.com:8002" | 93 | GridInfoURI = "${Const|BaseURL}:${Const|PublicPort}" |
94 | 94 | ||
95 | [GridService] | 95 | [GridService] |
96 | ; | 96 | ; |
97 | ; Change this to your grid-wide grid server | 97 | ; Change this to your grid-wide grid server |
98 | ; | 98 | ; |
99 | GridServerURI = "http://mygridserver.com:8003" | 99 | GridServerURI = "${Const|BaseURL}:${Const|PrivatePort}" |
100 | ;AllowHypergridMapSearch = true | 100 | ;AllowHypergridMapSearch = true |
101 | 101 | ||
102 | ;; Directory for map tile images of linked regions | 102 | ;; Directory for map tile images of linked regions |
@@ -105,51 +105,51 @@ | |||
105 | ; === HG ONLY === | 105 | ; === HG ONLY === |
106 | ;; Change this to the address of your Gatekeeper service | 106 | ;; Change this to the address of your Gatekeeper service |
107 | ;; (usually bundled with the rest of the services in one | 107 | ;; (usually bundled with the rest of the services in one |
108 | ;; Robust server in port 8002, but not always) | 108 | ;; Robust server in port ${Const|PublicPort}, but not always) |
109 | Gatekeeper="http://mygridserver.com:8002" | 109 | Gatekeeper="${Const|BaseURL}:${Const|PublicPort}" |
110 | 110 | ||
111 | [Messaging] | 111 | [Messaging] |
112 | ; === HG ONLY === | 112 | ; === HG ONLY === |
113 | ;; Change this to the address of your Gatekeeper service | 113 | ;; Change this to the address of your Gatekeeper service |
114 | ;; (usually bundled with the rest of the services in one | 114 | ;; (usually bundled with the rest of the services in one |
115 | ;; Robust server in port 8002, but not always) | 115 | ;; Robust server in port ${Const|PublicPort}, but not always) |
116 | Gatekeeper = "http://mygridserver.com:8002" | 116 | Gatekeeper = "${Const|BaseURL}:${Const|PublicPort}" |
117 | 117 | ||
118 | [AvatarService] | 118 | [AvatarService] |
119 | ; | 119 | ; |
120 | ; Change this to your grid-wide grid server | 120 | ; Change this to your grid-wide grid server |
121 | ; | 121 | ; |
122 | AvatarServerURI = "http://mygridserver.com:8003" | 122 | AvatarServerURI = "${Const|BaseURL}:${Const|PrivatePort}" |
123 | 123 | ||
124 | [PresenceService] | 124 | [PresenceService] |
125 | ; | 125 | ; |
126 | ; Change this to your grid-wide presence server | 126 | ; Change this to your grid-wide presence server |
127 | ; | 127 | ; |
128 | PresenceServerURI = "http://mygridserver.com:8003" | 128 | PresenceServerURI = "${Const|BaseURL}:${Const|PrivatePort}" |
129 | 129 | ||
130 | [UserAccountService] | 130 | [UserAccountService] |
131 | ; | 131 | ; |
132 | ; Change this to your grid-wide user accounts server | 132 | ; Change this to your grid-wide user accounts server |
133 | ; | 133 | ; |
134 | UserAccountServerURI = "http://mygridserver.com:8003" | 134 | UserAccountServerURI = "${Const|BaseURL}:${Const|PrivatePort}" |
135 | 135 | ||
136 | [GridUserService] | 136 | [GridUserService] |
137 | ; | 137 | ; |
138 | ; Change this to your grid-wide user accounts server | 138 | ; Change this to your grid-wide user accounts server |
139 | ; | 139 | ; |
140 | GridUserServerURI = "http://mygridserver.com:8003" | 140 | GridUserServerURI = "${Const|BaseURL}:${Const|PrivatePort}" |
141 | 141 | ||
142 | [AuthenticationService] | 142 | [AuthenticationService] |
143 | ; | 143 | ; |
144 | ; Change this to your grid-wide authentication server | 144 | ; Change this to your grid-wide authentication server |
145 | ; | 145 | ; |
146 | AuthenticationServerURI = "http://mygridserver.com:8003" | 146 | AuthenticationServerURI = "${Const|BaseURL}:${Const|PrivatePort}" |
147 | 147 | ||
148 | [FriendsService] | 148 | [FriendsService] |
149 | ; | 149 | ; |
150 | ; Change this to your grid-wide friends server | 150 | ; Change this to your grid-wide friends server |
151 | ; | 151 | ; |
152 | FriendsServerURI = "http://mygridserver.com:8003" | 152 | FriendsServerURI = "${Const|BaseURL}:${Const|PrivatePort}" |
153 | 153 | ||
154 | [HGInventoryAccessModule] | 154 | [HGInventoryAccessModule] |
155 | ; | 155 | ; |
@@ -157,8 +157,8 @@ | |||
157 | ; Change this to your server | 157 | ; Change this to your server |
158 | ; accessible from other grids | 158 | ; accessible from other grids |
159 | ; | 159 | ; |
160 | HomeURI = "http://mygridserver.com:8002" | 160 | HomeURI = "${Const|BaseURL}:${Const|PublicPort}" |
161 | Gatekeeper = "http://mygridserver.com:8002" | 161 | Gatekeeper = "${Const|BaseURL}:${Const|PublicPort}" |
162 | ;; If you want to protect your assets from being copied by foreign visitors | 162 | ;; If you want to protect your assets from being copied by foreign visitors |
163 | ;; set this to false. You may want to do this on sims that have licensed content. | 163 | ;; set this to false. You may want to do this on sims that have licensed content. |
164 | ;; Default is true. | 164 | ;; Default is true. |
@@ -173,7 +173,7 @@ | |||
173 | ;; while separating regions' assets from users' assets. Asset transfer between | 173 | ;; while separating regions' assets from users' assets. Asset transfer between |
174 | ;; the users' asset server and the regions' asset server is done in HG-like manner. | 174 | ;; the users' asset server and the regions' asset server is done in HG-like manner. |
175 | ; CheckSeparateAssets = false | 175 | ; CheckSeparateAssets = false |
176 | ; RegionHGAssetServerURI = http://mygridserver.com:8002 | 176 | ; RegionHGAssetServerURI = ${Const|BaseURL}:${Const|PublicPort} |
177 | 177 | ||
178 | 178 | ||
179 | [HGAssetService] | 179 | [HGAssetService] |
@@ -182,7 +182,7 @@ | |||
182 | ; Change this to your server | 182 | ; Change this to your server |
183 | ; accessible from other grids | 183 | ; accessible from other grids |
184 | ; | 184 | ; |
185 | HomeURI = "http://mygridserver.com:8002" | 185 | HomeURI = "${Const|BaseURL}:${Const|PublicPort}" |
186 | 186 | ||
187 | ;; The asset types that this grid can export to / import from other grids. | 187 | ;; The asset types that this grid can export to / import from other grids. |
188 | ;; Comma separated. | 188 | ;; Comma separated. |
@@ -205,10 +205,10 @@ | |||
205 | ; === HG ONLY === | 205 | ; === HG ONLY === |
206 | ; Change this to your user agent server (HG robust) | 206 | ; Change this to your user agent server (HG robust) |
207 | ; | 207 | ; |
208 | UserAgentServerURI = "http://mygridserver.com:8002" | 208 | UserAgentServerURI = "${Const|BaseURL}:${Const|PublicPort}" |
209 | 209 | ||
210 | [MapImageService] | 210 | [MapImageService] |
211 | MapImageServerURI = "http://mygridserver.com:8003" | 211 | MapImageServerURI = "${Const|BaseURL}:${Const|PrivatePort}" |
212 | 212 | ||
213 | [AuthorizationService] | 213 | [AuthorizationService] |
214 | ; If you have regions with access restrictions | 214 | ; If you have regions with access restrictions |