Robust.ini.example 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533
  1. ; * Run
  2. ; * $ Robust.exe -inifile Robust.ini
  3. ; *
  4. ; **
  5. ; *
  6. ; * The Const section allows us to define some basic information that we
  7. ; * will use throughout our configuration. We will provide examples for
  8. ; * setting the base url of the Robust server and the public and private ports
  9. ; * it uses. Changing the values of the constants will set the operating
  10. ; * parameters thoughout the configuration. Other constants that may prove
  11. ; * to be useful may be added to the followin section. They may be
  12. ; * referenced anywhere in the configuration by using ${Const|Name}. One
  13. ; * such use is providing a base path for setting locations that Robust
  14. ; * uses to write data.
  15. ; *
  16. [Const]
  17. ; The URL of the Robust server
  18. BaseURL = "http://127.0.0.1"
  19. ; The public port of the Robust server
  20. PublicPort = "8002"
  21. ; The private port of the Robust server
  22. PrivatePort = "8003"
  23. ; * The startup section lists all the connectors to start up in this server
  24. ; * instance. This may be only one, or it may be the entire server suite.
  25. ; * Multiple connectors should be separated by commas.
  26. ; *
  27. ; * These are the IN connectors the server uses, the in connectors
  28. ; * read this config file and load the needed service and database connectors
  29. ; *
  30. ; * The full syntax of a connector string is:
  31. ; * [[<ConfigName>@]<port>/]<dll name>[:<class name>]
  32. ; *
  33. [Startup]
  34. ; Place to create a PID file
  35. ; If no path if specified then a PID file is not created.
  36. ; PIDFile = "/tmp/Robust.exe.pid"
  37. ; Plugin Registry Location
  38. ; Set path to directory for plugin registry. Information
  39. ; about the registered repositories and installed plugins
  40. ; will be stored here
  41. ; The Robust.exe process must have R/W access to the location
  42. RegistryLocation = "."
  43. ; Modular configurations
  44. ; Set path to directory for modular ini files...
  45. ; The Robust.exe process must have R/W access to the location
  46. ConfigDirectory = "."
  47. ; Console commands can be saved to a file, so the command history persists after a restart. (default is true)
  48. ConsoleHistoryFileEnabled = true
  49. ; The history file can be just a filename (relative to OpenSim's bin/ directory
  50. ; or it can be a full path to somewhere else. (default is OpenSimConsoleHistory.txt in bin/)
  51. ConsoleHistoryFile = "RobustConsoleHistory.txt"
  52. ; How many lines of command history should we keep? (default is 100)
  53. ConsoleHistoryFileLines = 100
  54. [ServiceList]
  55. AssetServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AssetServiceConnector"
  56. InventoryInConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:XInventoryInConnector"
  57. ;; Uncomment if you have set up Freeswitch (see [FreeswitchService] below)
  58. ;VoiceConnector = "8004/OpenSim.Server.Handlers.dll:FreeswitchServerConnector"
  59. GridServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:GridServiceConnector"
  60. GridInfoServerInConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:GridInfoServerInConnector"
  61. AuthenticationServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AuthenticationServiceConnector"
  62. OpenIdServerConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:OpenIdServerConnector"
  63. AvatarServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AvatarServiceConnector"
  64. LLLoginServiceInConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:LLLoginServiceInConnector"
  65. PresenceServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:PresenceServiceConnector"
  66. UserAccountServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:UserAccountServiceConnector"
  67. GridUserServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:GridUserServiceConnector"
  68. FriendsServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:FriendsServiceConnector"
  69. MapAddServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:MapAddServiceConnector"
  70. MapGetServiceConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:MapGetServiceConnector"
  71. ;; Uncomment this if you want offline IM to work
  72. ;OfflineIMServiceConnector = "${Const|PrivatePort}/OpenSim.Addons.OfflineIM.dll:OfflineIMServiceRobustConnector"
  73. ;; Uncomment this if you want Groups V2 to work
  74. ;GroupsServiceConnector = "${Const|PrivatePort}/OpenSim.Addons.Groups.dll:GroupsServiceRobustConnector"
  75. ;; Uncomment to provide bakes caching
  76. ;BakedTextureService = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:XBakesConnector"
  77. ;; Uncomment for UserProfiles see [UserProfilesService] to configure...
  78. ; UserProfilesServiceConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:UserProfilesConnector"
  79. ;; Uncomment if you want to have centralized estate data
  80. ; EstateDataService = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:EstateDataRobustConnector"
  81. ; * This is common for all services, it's the network setup for the entire
  82. ; * server instance, if none is specified above
  83. ; *
  84. [Network]
  85. port = ${Const|PrivatePort}
  86. ; HTTPS for "Out of band" management applications such as the remote admin
  87. ; module. May specify https_main = True to make the main http server
  88. ; use https or "False" to make the main server HTTP
  89. ; https_main = False
  90. ;
  91. ; Create https_listener = "True" will create a listener on the port
  92. ; specified. Provide the path to your server certificate along with it's
  93. ; password
  94. ; https_listener = False
  95. ;
  96. ; Set our listener to this port
  97. ; https_port = 0
  98. ;
  99. ; Path to X509 certificate
  100. ; cert_path = "path/to/cert.p12"
  101. ;
  102. ; Password for cert
  103. ; cert_pass = "password"
  104. ;; The follow 3 variables are for HTTP Basic Authentication for the Robust services.
  105. ;; Use this if your central services in port ${Const|PrivatePort} need to be accessible on the Internet
  106. ;; but you want to protect them from unauthorized access.
  107. ; AuthType = "BasicHttpAuthentication"
  108. ; HttpAuthUsername = "some_username"
  109. ; HttpAuthPassword = "some_password"
  110. ;;
  111. ;; AuthType above can be overriden in any of the service sections below by
  112. ; AuthType = "None"
  113. ;; This is useful in cases where you want to protect most of the services,
  114. ;; but unprotect individual services. Username and Password can also be
  115. ;; overriden if you want to use different credentials for the different services.
  116. ;; By default, scripts are not allowed to call private services via llHttpRequest()
  117. ;; Such calls are detected by the X-SecondLife-Shared HTTP header
  118. ;; If you allow such calls you must be sure that they are restricted to very trusted scripters
  119. ;; (remember scripts can also be in visiting avatar attachments).
  120. ;; This can be overriden in individual private service sections if necessary
  121. AllowllHTTPRequestIn = false
  122. ; * The following are for the remote console
  123. ; * They have no effect for the local or basic console types
  124. ; * Leave commented to diable logins to the console
  125. ;ConsoleUser = Test
  126. ;ConsolePass = secret
  127. ;ConsolePort = 0
  128. [DatabaseService]
  129. ; PGSQL
  130. ; Uncomment these lines if you want to use PGSQL storage
  131. ; Change the connection string to your db details
  132. ;StorageProvider = "OpenSim.Data.PGSQL.dll"
  133. ;ConnectionString = "Server=localhost;Database=opensim;User Id=opensim; password=***;"
  134. ; MySQL
  135. ; Uncomment these lines if you want to use MySQL storage
  136. ; Change the connection string to your db details
  137. StorageProvider = "OpenSim.Data.MySQL.dll"
  138. ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;"
  139. ; * As an example, the below configuration precisely mimicks the legacy
  140. ; * asset server. It is read by the asset IN connector (defined above)
  141. ; * and it then loads the OUT connector (a local database module). That,
  142. ; * in turn, reads the asset loader and database connection information
  143. ; *
  144. [AssetService]
  145. LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
  146. DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
  147. AssetLoaderArgs = "./assets/AssetSets.xml"
  148. ; Allow maptile assets to remotely deleted by remote calls to the asset service.
  149. ; There is no harm in having this as false - it just means that historical maptile assets are not deleted.
  150. ; This only applies to maptiles served via the version 1 viewer mechanisms
  151. ; Default is false
  152. AllowRemoteDelete = false
  153. ; Allow all assets to be remotely deleted.
  154. ; Only set this to true if you are operating a grid where you control all calls to the asset service
  155. ; (where a necessary condition is that you control all simulators) and you need this for admin purposes.
  156. ; If set to true, AllowRemoteDelete = true is required as well.
  157. ; Default is false.
  158. AllowRemoteDeleteAllTypes = false
  159. ; * This configuration loads the inventory server modules. It duplicates
  160. ; * the function of the legacy inventory server
  161. ; *
  162. [InventoryService]
  163. LocalServiceModule = "OpenSim.Services.InventoryService.dll:XInventoryService"
  164. ; Will calls to purge folders (empty trash) and immediately delete/update items or folders (not move to trash first) succeed?
  165. ; If this is set to false then some other arrangement must be made to perform these operations if necessary.
  166. AllowDelete = true
  167. ; * This is the new style grid service.
  168. ; * "Realm" is the table that is used for user lookup.
  169. ; * It defaults to "regions", which uses the legacy tables
  170. ; *
  171. [GridService]
  172. LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
  173. ; Realm = "regions"
  174. ; AllowDuplicateNames = "True"
  175. ;; Next, we can specify properties of regions, including default and fallback regions
  176. ;; The syntax is: Region_<RegionName> = "<flags>"
  177. ;; or: Region_<RegionID> = "<flags>"
  178. ;; where <flags> can be DefaultRegion, DefaultHGRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut, Reservation, NoMove, Authenticate
  179. ;;
  180. ;; DefaultRegion If a local login cannot be placed in the required region (e.g. home region does not exist, avatar is not allowed entry, etc.)
  181. ;; then this region becomes the destination. Only the first online default region will be used. If no DefaultHGRegion
  182. ;; is specified then this will also be used as the region for hypergrid connections that require it (commonly because they have not specified
  183. ;; an explicit region.
  184. ;;
  185. ;; DefaultHGRegion If an avatar connecting via the hypergrid does not specify a region, then they are placed here. Only the first online
  186. ;; region will be used.
  187. ;;
  188. ;; FallbackRegion If the DefaultRegion is not available for a local login, then any FallbackRegions are tried instead. These are tried in the
  189. ;; order specified. This only applies to local logins at this time, not Hypergrid connections.
  190. ;;
  191. ;; NoDirectLogin A hypergrid user cannot directly connect to this region. This does not apply to local logins.
  192. ;;
  193. ;; Persistent When the simulator is shutdown, the region is signalled as offline but left registered on the grid.
  194. ;;
  195. ;; Example specification:
  196. ; Region_Welcome_Area = "DefaultRegion, FallbackRegion"
  197. ; (replace spaces with underscore)
  198. ;; Allow supporting viewers to export content
  199. ;; Set to false to prevent export
  200. ExportSupported = true
  201. ; * This is the configuration for the freeswitch server in grid mode
  202. [FreeswitchService]
  203. LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
  204. ;; The IP address of your FreeSWITCH server.
  205. ;; This address must be reachable by viewers.
  206. ; ServerAddress = 127.0.0.1
  207. ;; The following configuration parameters are optional
  208. ;; By default, this is the same as the ServerAddress
  209. ; Realm = 127.0.0.1
  210. ;; By default, this is the same as the ServerAddress on port 5060
  211. ; SIPProxy = 127.0.0.1:5060
  212. ;; Default is 5000ms
  213. ; DefaultTimeout = 5000
  214. ;; The dial plan context. Default is "default"
  215. ; Context = default
  216. ;; Currently unused
  217. ; UserName = freeswitch
  218. ;; Currently unused
  219. ; Password = password
  220. ;; The following parameters are for STUN = Simple Traversal of UDP through NATs
  221. ;; See http://wiki.freeswitch.org/wiki/NAT_Traversal
  222. ;; stun.freeswitch.org is not guaranteed to be running so use it in
  223. ;; production at your own risk
  224. ; EchoServer = 127.0.0.1
  225. ; EchoPort = 50505
  226. ; AttemptSTUN = false
  227. ; * This is the new style authentication service. Currently, only MySQL
  228. ; * is implemented.
  229. ; *
  230. [AuthenticationService]
  231. ; for the server connector
  232. LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  233. ;; Allow the service to process HTTP getauthinfo calls.
  234. ;; Default is false.
  235. ; AllowGetAuthInfo = false
  236. ;; Allow the service to process HTTP setauthinfo calls.
  237. ;; Default is false.
  238. ; AllowSetAuthInfo = false
  239. ;; Allow the service to process HTTP setpassword calls.
  240. ;; Default is false.
  241. ; AllowSetPassword = false
  242. [OpenIdService]
  243. ; for the server connector
  244. AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  245. UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  246. ; * This is the new style authentication service. Currently, only MySQL
  247. ; * is implemented. "Realm" is the table that is used for user lookup.
  248. ; * It defaults to "useraccounts", which uses the new style.
  249. ; * Realm = "users" will use the legacy tables as an authentication source
  250. ; *
  251. [UserAccountService]
  252. ; for the server connector
  253. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  254. ; Realm = "useraccounts"
  255. ; These are for creating new accounts by the service
  256. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  257. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  258. GridService = "OpenSim.Services.GridService.dll:GridService"
  259. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  260. AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  261. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  262. ;; This switch creates the minimum set of body parts and avatar entries for a viewer 2
  263. ;; to show a default "Ruth" avatar rather than a cloud for a newly created user.
  264. ;; Default is false
  265. CreateDefaultAvatarEntries = true
  266. ;; Allow the service to process HTTP createuser calls.
  267. ;; Default is false.
  268. ; AllowCreateUser = false
  269. ;; Allow the service to process HTTP setaccount calls.
  270. ;; Default is false.
  271. ; AllowSetAccount = false
  272. [GridUserService]
  273. ; for the server connector
  274. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:GridUserService"
  275. [PresenceService]
  276. ; for the server connector
  277. LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
  278. ; Set this to true to allow the use of advanced web services and multiple
  279. ; bots using one account
  280. AllowDuplicatePresences = false;
  281. [AvatarService]
  282. ; for the server connector
  283. LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
  284. [FriendsService]
  285. ; for the server connector
  286. LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService"
  287. [EstateService]
  288. LocalServiceModule = "OpenSim.Services.EstateService.dll:EstateDataService"
  289. [LibraryService]
  290. LibraryName = "OpenSim Library"
  291. DefaultLibrary = "./inventory/Libraries.xml"
  292. [LoginService]
  293. ; for the server connector
  294. LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
  295. ; for the service
  296. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  297. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  298. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  299. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  300. AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  301. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  302. GridService = "OpenSim.Services.GridService.dll:GridService"
  303. SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
  304. LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
  305. FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
  306. ; The minimum user level required for a user to be able to login. 0 by default
  307. ; If you disable a particular user's account then you can set their login level below this number.
  308. ; You can also change this level from the console though these changes will not be persisted.
  309. ; MinLoginLevel = 0
  310. ; Ask co-operative viewers to use a different currency name
  311. ;Currency = ""
  312. ;; Set minimum fee to publish classified
  313. ; ClassifiedFee = 0
  314. WelcomeMessage = "Welcome, Avatar!"
  315. AllowRemoteSetLoginLevel = "false"
  316. ; For V2 map
  317. MapTileURL = "${Const|BaseURL}:${Const|PublicPort}/";
  318. ; Url to search service
  319. ; SearchURL = "${Const|BaseURL}:${Const|PublicPort}/";
  320. ; For V3 destination guide
  321. ; DestinationGuide = "${Const|BaseURL}/guide"
  322. ; For V3 avatar picker (( work in progress ))
  323. ; AvatarPicker = "${Const|BaseURL}/avatars"
  324. ; If you run this login server behind a proxy, set this to true
  325. ; HasProxy = false
  326. ;; Regular expressions for controlling which client versions are accepted/denied.
  327. ;; An empty string means nothing is checked.
  328. ;;
  329. ;; Example 1: allow only these 3 types of clients (any version of them)
  330. ;; AllowedClients = "Imprudence|Hippo|Second Life"
  331. ;;
  332. ;; Example 2: allow all clients except these
  333. ;; DeniedClients = "Twisted|Crawler|Cryolife|FuckLife|StreetLife|GreenLife|AntiLife|KORE-Phaze|Synlyfe|Purple Second Life|SecondLi |Emerald"
  334. ;;
  335. ;; Note that these are regular expressions, so every character counts.
  336. ;; Also note that this is very weak security and should not be trusted as a reliable means
  337. ;; for keeping bad clients out; modified clients can fake their identifiers.
  338. ;;
  339. ;;
  340. ;AllowedClients = ""
  341. ;DeniedClients = ""
  342. ;# {DSTZone} {} {Override Daylight Saving Time rules} {* none local} "America/Los_Angeles;Pacific Standard Time"
  343. ;; Viewers do not listen to timezone sent by the server. They use Pacific Standard Time instead,
  344. ;; but rely on the server to calculate Daylight Saving Time. Sending another DST than US Pacific
  345. ;; would result in time inconsistencies between grids (during summer and around DST transition period)
  346. ;; default let OpenSim calculate US Pacific DST
  347. ;; "none" disable DST (equivallent to "local" with system set to GMT)
  348. ;; "local" force legacy behaviour (using local system time to calculate DST)
  349. ; DSTZone = "America/Los_Angeles;Pacific Standard Time"
  350. ;# {DSTZone} {} {Override Daylight Saving Time rules} {* none local} "America/Los_Angeles;Pacific Standard Time"
  351. ;; Viewers do not receive timezone information from the server - almost all (?) default to Pacific Standard Time
  352. ;; However, they do rely on the server to tell them whether it's Daylight Saving Time or not.
  353. ;; Hence, calculating DST based on a different timezone can result in a misleading viewer display and inconsistencies between grids.
  354. ;; By default, this setting uses various timezone names to calculate DST with regards to the viewer's standard PST.
  355. ;; Options are
  356. ;; "none" no DST
  357. ;; "local" use the server's only timezone to calculate DST. This is previous OpenSimulator behaviour.
  358. ;; "America/Los_Angeles;Pacific Standard Time" use these timezone names to look up Daylight savings.
  359. ;; 'America/Los_Angeles' is used on Linux/Mac systems whilst 'Pacific Standard Time' is used on Windows
  360. DSTZone = "America/Los_Angeles;Pacific Standard Time"
  361. ;Basic Login Service Dos Protection Tweaks
  362. ;;
  363. ;; Some Grids/Users use a transparent proxy that makes use of the X-Forwarded-For HTTP Header, If you do, set this to true
  364. ;; If you set this to true and you don't have a transparent proxy, it may allow attackers to put random things in the X-Forwarded-For header to
  365. ;; get around this basic DOS protection.
  366. ;DOSAllowXForwardedForHeader = false
  367. ;;
  368. ;; The protector adds up requests during this rolling period of time, default 10 seconds
  369. ;DOSRequestTimeFrameMS = 10000
  370. ;;
  371. ;; The amount of requests in the above timeframe from the same endpoint that triggers protection
  372. ;DOSMaxRequestsInTimeFrame = 5
  373. ;;
  374. ;; The amount of time that a specific endpoint is blocked. Default 2 minutes.
  375. ;DOSForgiveClientAfterMS = 120000
  376. ;;
  377. ;; To turn off basic dos protection, set the DOSMaxRequestsInTimeFrame to 0.
  378. [MapImageService]
  379. LocalServiceModule = "OpenSim.Services.MapImageService.dll:MapImageService"
  380. ; Set this if you want to change the default
  381. ; TilesStoragePath = "maptiles"
  382. ;
  383. ; If for some reason you have the AddMapTile service outside the firewall (e.g. ${Const|PublicPort}),
  384. ; you may want to set this. Otherwise, don't set it, because it's already protected.
  385. ; GridService = "OpenSim.Services.GridService.dll:GridService"
  386. ;
  387. ; Additionally, if you run this server behind a proxy, set this to true
  388. ; HasProxy = false
  389. [Messaging]
  390. ; OfflineIM
  391. OfflineIMService = "OpenSim.Addons.OfflineIM.dll:OfflineIMService"
  392. [GridInfoService]
  393. ; These settings are used to return information on a get_grid_info call.
  394. ; Client launcher scripts and third-party clients make use of this to
  395. ; autoconfigure the client and to provide a nice user experience. If you
  396. ; want to facilitate that, you should configure the settings here according
  397. ; to your grid or standalone setup.
  398. ;
  399. ; See http://opensimulator.org/wiki/GridInfo
  400. ; login uri: for grid this is the login server URI
  401. login = ${Const|BaseURL}:${Const|PublicPort}/
  402. ; long grid name: the long name of your grid
  403. gridname = "the lost continent of hippo"
  404. ; short grid name: the short name of your grid
  405. gridnick = "hippogrid"
  406. ; login page: optional: if it exists it will be used to tell the client to use
  407. ; this as splash page
  408. ;welcome = ${Const|BaseURL}/welcome
  409. ; helper uri: optional: if it exists if will be used to tell the client to use
  410. ; this for all economy related things
  411. ;economy = ${Const|BaseURL}:${Const|PublicPort}/
  412. ; web page of grid: optional: page providing further information about your grid
  413. ;about = ${Const|BaseURL}/about/
  414. ; account creation: optional: page providing further information about obtaining
  415. ; a user account on your grid
  416. ;register = ${Const|BaseURL}/register
  417. ; help: optional: page providing further assistance for users of your grid
  418. ;help = ${Const|BaseURL}/help
  419. ; password help: optional: page providing password assistance for users of your grid
  420. ;password = ${Const|BaseURL}/password
  421. [UserProfilesService]
  422. LocalServiceModule = "OpenSim.Services.UserProfilesService.dll:UserProfilesService"
  423. Enabled = false
  424. ;; Configure this for separate profiles database
  425. ;; ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;"
  426. ;; Realm = UserProfiles
  427. UserAccountService = OpenSim.Services.UserAccountService.dll:UserAccountService
  428. AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  429. [BakedTextureService]
  430. LocalServiceModule = "OpenSim.Server.Handlers.dll:XBakes"
  431. ;; This directory must be writable by the user ROBUST runs as. It will be created automatically.
  432. BaseDirectory = "./bakes"