1
0

Robust.ini.example 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601
  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 = "robust-include"
  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. ; Time stamp commands in history file (default false)
  55. ; ConsoleHistoryTimeStamp = false
  56. ; peers SSL certificate validation options
  57. ; you can allow selfsigned certificates or no official CA with next option set to true
  58. NoVerifyCertChain = true
  59. ; you can also bypass the hostname or domain verification
  60. NoVerifyCertHostname = true
  61. ; having both options true does provide encryption but with low security
  62. ; set both true if you don't care to use SSL, they are needed to contact regions or grids that do use it.
  63. [ServiceList]
  64. AssetServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AssetServiceConnector"
  65. InventoryInConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:XInventoryInConnector"
  66. ;; Uncomment if you have set up Freeswitch (see [FreeswitchService] below)
  67. ;VoiceConnector = "8004/OpenSim.Server.Handlers.dll:FreeswitchServerConnector"
  68. GridServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:GridServiceConnector"
  69. GridInfoServerInConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:GridInfoServerInConnector"
  70. AuthenticationServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AuthenticationServiceConnector"
  71. OpenIdServerConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:OpenIdServerConnector"
  72. AvatarServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AvatarServiceConnector"
  73. LLLoginServiceInConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:LLLoginServiceInConnector"
  74. PresenceServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:PresenceServiceConnector"
  75. UserAccountServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:UserAccountServiceConnector"
  76. GridUserServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:GridUserServiceConnector"
  77. AgentPreferencesServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:AgentPreferencesServiceConnector"
  78. FriendsServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:FriendsServiceConnector"
  79. MapAddServiceConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:MapAddServiceConnector"
  80. MapGetServiceConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:MapGetServiceConnector"
  81. ;; Uncomment this if you want offline IM to work
  82. ; OfflineIMServiceConnector = "${Const|PrivatePort}/OpenSim.Addons.OfflineIM.dll:OfflineIMServiceRobustConnector"
  83. ;; Uncomment this if you want Groups V2 to work
  84. ; GroupsServiceConnector = "${Const|PrivatePort}/OpenSim.Addons.Groups.dll:GroupsServiceRobustConnector"
  85. ;; Uncomment to provide bakes caching
  86. ; BakedTextureService = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:XBakesConnector"
  87. ;; Uncomment for UserProfiles see [UserProfilesService] to configure...
  88. ; UserProfilesServiceConnector = "${Const|PublicPort}/OpenSim.Server.Handlers.dll:UserProfilesConnector"
  89. ;; Uncomment if you want to have centralized estate data
  90. ; EstateDataService = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:EstateDataRobustConnector"
  91. MuteListConnector = "${Const|PrivatePort}/OpenSim.Server.Handlers.dll:MuteListServiceConnector"
  92. ; * This is common for all services, it's the network setup for the entire
  93. ; * server instance, if none is specified above
  94. ; *
  95. [Network]
  96. port = ${Const|PrivatePort}
  97. ; HTTPS for "Out of band" management applications such as the remote admin
  98. ; module. May specify https_main = True to make the main http server
  99. ; use https or "False" to make the main server HTTP
  100. ; https_main = False
  101. ;
  102. ; Create https_listener = "True" will create a listener on the port
  103. ; specified. Provide the path to your server certificate along with it's
  104. ; password
  105. ; https_listener = False
  106. ;
  107. ; Set our listener to this port
  108. ; https_port = 0
  109. ;
  110. ; Path to X509 certificate
  111. ; cert_path = "path/to/cert.p12"
  112. ;
  113. ; Password for cert
  114. ; cert_pass = "password"
  115. ;; The follow 3 variables are for HTTP Basic Authentication for the Robust services.
  116. ;; Use this if your central services in port ${Const|PrivatePort} need to be accessible on the Internet
  117. ;; but you want to protect them from unauthorized access.
  118. ; AuthType = "BasicHttpAuthentication"
  119. ; HttpAuthUsername = "some_username"
  120. ; HttpAuthPassword = "some_password"
  121. ;;
  122. ;; AuthType above can be overriden in any of the service sections below by
  123. ; AuthType = "None"
  124. ;; This is useful in cases where you want to protect most of the services,
  125. ;; but unprotect individual services. Username and Password can also be
  126. ;; overriden if you want to use different credentials for the different services.
  127. ;; By default, scripts are not allowed to call private services via llHttpRequest()
  128. ;; Such calls are detected by the X-SecondLife-Shared HTTP header
  129. ;; If you allow such calls you must be sure that they are restricted to very trusted scripters
  130. ;; (remember scripts can also be in visiting avatar attachments).
  131. ;; This can be overriden in individual private service sections if necessary
  132. AllowllHTTPRequestIn = false
  133. ; * The following are for the remote console
  134. ; * They have no effect for the local or basic console types
  135. ; * Leave commented to diable logins to the console
  136. ;ConsoleUser = Test
  137. ;ConsolePass = secret
  138. ;ConsolePort = 0
  139. [AccessControl]
  140. ;# {AllowedClients} {} {Bar (|) separated list of allowed clients} {}
  141. ;; Bar (|) separated list of viewers which may gain access to the regions.
  142. ;; One can use a substring of the viewer name to enable only certain
  143. ;; versions
  144. ;; Example: Agent uses the viewer "Imprudence 1.3.2.0"
  145. ;; - "Imprudence" has access
  146. ;; - "Imprudence 1.3" has access
  147. ;; - "Imprudence 1.3.1" has no access
  148. ; AllowedClients = ""
  149. ;# {DeniedClients} {} {Bar (|) separated list of denied clients} {}
  150. ;; Bar (|) separated list of viewers which may not gain access to the regions.
  151. ;; One can use a Substring of the viewer name to disable only certain
  152. ;; versions
  153. ;; Example: Agent uses the viewer "Imprudence 1.3.2.0"
  154. ;; - "Imprudence" has no access
  155. ;; - "Imprudence 1.3" has no access
  156. ;; - "Imprudence 1.3.1" has access
  157. ; DeniedClients = ""
  158. [DatabaseService]
  159. ; PGSQL
  160. ; Uncomment these lines if you want to use PGSQL storage
  161. ; Change the connection string to your db details
  162. ;StorageProvider = "OpenSim.Data.PGSQL.dll"
  163. ;ConnectionString = "Server=localhost;Database=opensim;User Id=opensim; password=***;"
  164. ; MySQL
  165. ; Uncomment these lines if you want to use MySQL storage
  166. ; Change the connection string to your db details
  167. ; If using MySQL 8.0.4 or later, check that default-authentication-plugin=mysql_native_password
  168. ; rather than caching_sha2_password is set in /etc/mysql/mysql.conf.d/mysqld.cnf (not applicable to MariaDB).
  169. StorageProvider = "OpenSim.Data.MySQL.dll"
  170. ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;SslMode=None;"
  171. ; * As an example, the below configuration precisely mimicks the legacy
  172. ; * asset server. It is read by the asset IN connector (defined above)
  173. ; * and it then loads the OUT connector (a local database module). That,
  174. ; * in turn, reads the asset loader and database connection information
  175. ; *
  176. [AssetService]
  177. ;; Choose an asset service (Only one option should be enabled)
  178. LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
  179. ;LocalServiceModule = "OpenSim.Services.FSAssetService.dll:FSAssetConnector"
  180. ;; FSAsset Directories. Base directory, where final asset files are stored and Spool directory for temp files
  181. ;; These directories must be on the same physical filesystem
  182. ;BaseDirectory = "./fsassets/data"
  183. ;SpoolDirectory = "./fsassets/tmp"
  184. ;; FSAssets only: if running several instances, only one can run some services, so others need to be set as secondary
  185. ;; for secondary instances uncoment this line
  186. ;SecondaryInstance = true
  187. ;; Original service can be checked if FSAssets can not find an asset
  188. ;FallbackService = "OpenSim.Services.AssetService.dll:AssetService";
  189. ;; How many days since last updating the access time before its updated again by FSAssets when accessing an asset
  190. ;; Reduces DB calls if asset is requested often. Default value 0 will always update access time
  191. ;DaysBetweenAccessTimeUpdates = 30
  192. ;; Should FSAssets print read/write stats to the robust console, default is true
  193. ;ShowConsoleStats = true
  194. ;; FSAssets Custom Database Config (Leave blank to use grids default database configuration)
  195. ;StorageProvider = ""
  196. ;ConnectionString = ""
  197. ;Realm = "fsassets"
  198. ;; FSAssets uses a folder structure to reduce file access times. By default that structure is 00/00/00
  199. ;; Setting this to true will switch to an older 000/000 format, which can cause issues with long file lists
  200. ;UseOsgridFormat = false
  201. ;; The following are common to both the default asset service and FSAsset service
  202. ;; Common asset service options
  203. DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
  204. AssetLoaderArgs = "./assets/AssetSets.xml"
  205. ; Allow maptile assets to remotely deleted by remote calls to the asset service.
  206. ; There is no harm in having this as false - it just means that historical maptile assets are not deleted.
  207. ; This only applies to maptiles served via the version 1 viewer mechanisms
  208. ; Default is false
  209. AllowRemoteDelete = false
  210. ; Allow all assets to be remotely deleted.
  211. ; Only set this to true if you are operating a grid where you control all calls to the asset service
  212. ; (where a necessary condition is that you control all simulators) and you need this for admin purposes.
  213. ; If set to true, AllowRemoteDelete = true is required as well.
  214. ; Default is false.
  215. AllowRemoteDeleteAllTypes = false
  216. ; * This configuration loads the inventory server modules. It duplicates
  217. ; * the function of the legacy inventory server
  218. ; *
  219. [InventoryService]
  220. LocalServiceModule = "OpenSim.Services.InventoryService.dll:XInventoryService"
  221. ; Will calls to purge folders (empty trash) and immediately delete/update items or folders (not move to trash first) succeed?
  222. ; If this is set to false then some other arrangement must be made to perform these operations if necessary.
  223. AllowDelete = true
  224. ; * This is the new style grid service.
  225. ; * "Realm" is the table that is used for user lookup.
  226. ; * It defaults to "regions", which uses the legacy tables
  227. ; *
  228. [GridService]
  229. LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
  230. ; Realm = "regions"
  231. ; AllowDuplicateNames = "True"
  232. ;; Next, we can specify properties of regions, including default and fallback regions
  233. ;; The syntax is: Region_<RegionName> = "<flags>"
  234. ;; or: Region_<RegionID> = "<flags>"
  235. ;; where <flags> can be DefaultRegion, DefaultHGRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut, Reservation, NoMove, Authenticate
  236. ;;
  237. ;; 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.)
  238. ;; then this region becomes the destination. Only the first online default region will be used. If no DefaultHGRegion
  239. ;; is specified then this will also be used as the region for hypergrid connections that require it (commonly because they have not specified
  240. ;; an explicit region.
  241. ;;
  242. ;; DefaultHGRegion If an avatar connecting via the hypergrid does not specify a region, then they are placed here. Only the first online
  243. ;; region will be used.
  244. ;;
  245. ;; FallbackRegion If the DefaultRegion is not available for a local login, then any FallbackRegions are tried instead. These are tried in the
  246. ;; order specified. This only applies to local logins at this time, not Hypergrid connections.
  247. ;;
  248. ;; NoDirectLogin A hypergrid user cannot directly connect to this region. This does not apply to local logins.
  249. ;;
  250. ;; Persistent When the simulator is shutdown, the region is signalled as offline but left registered on the grid.
  251. ;;
  252. ;; Example specification:
  253. ; Region_Welcome_Area = "DefaultRegion"
  254. ; (replace spaces with underscore)
  255. ;; Allow supporting viewers to export content
  256. ;; Set to false to prevent export
  257. ExportSupported = true
  258. ; * This is the configuration for the freeswitch server in grid mode
  259. [FreeswitchService]
  260. LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
  261. ;; The IP address of your FreeSWITCH server.
  262. ;; This address must be reachable by viewers.
  263. ; ServerAddress = 127.0.0.1
  264. ;; The following configuration parameters are optional
  265. ;; By default, this is the same as the ServerAddress
  266. ; Realm = 127.0.0.1
  267. ;; By default, this is the same as the ServerAddress on port 5060
  268. ; SIPProxy = 127.0.0.1:5060
  269. ;; Default is 5000ms
  270. ; DefaultTimeout = 5000
  271. ;; The dial plan context. Default is "default"
  272. ; Context = default
  273. ;; Currently unused
  274. ; UserName = freeswitch
  275. ;; Currently unused
  276. ; Password = password
  277. ;; The following parameters are for STUN = Simple Traversal of UDP through NATs
  278. ;; See http://wiki.freeswitch.org/wiki/NAT_Traversal
  279. ;; stun.freeswitch.org is not guaranteed to be running so use it in
  280. ;; production at your own risk
  281. ; EchoServer = 127.0.0.1
  282. ; EchoPort = 50505
  283. ; AttemptSTUN = false
  284. ; * This is the new style authentication service. Currently, only MySQL
  285. ; * is implemented.
  286. ; *
  287. [AuthenticationService]
  288. ; for the server connector
  289. LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  290. ; Realm = "auth"
  291. ;; Allow the service to process HTTP getauthinfo calls.
  292. ;; Default is false.
  293. ; AllowGetAuthInfo = false
  294. ;; Allow the service to process HTTP setauthinfo calls.
  295. ;; Default is false.
  296. ; AllowSetAuthInfo = false
  297. ;; Allow the service to process HTTP setpassword calls.
  298. ;; Default is false.
  299. ; AllowSetPassword = false
  300. [OpenIdService]
  301. ; for the server connector
  302. AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  303. UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  304. ; * This is the new style user service.
  305. ; * "Realm" is the table that is used for user lookup.
  306. ; * It defaults to "useraccounts", which uses the new style.
  307. ; * Realm = "users" will use the legacy tables as an authentication source
  308. ; *
  309. [UserAccountService]
  310. ; for the server connector
  311. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  312. ; Realm = "UserAccounts"
  313. ; These are for creating new accounts by the service
  314. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  315. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  316. GridService = "OpenSim.Services.GridService.dll:GridService"
  317. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  318. AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  319. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  320. ;; This switch creates the minimum set of body parts and avatar entries for a viewer 2
  321. ;; to show a default "Ruth" avatar rather than a cloud for a newly created user.
  322. ;; Default is false
  323. CreateDefaultAvatarEntries = true
  324. ;; Allow the service to process HTTP createuser calls.
  325. ;; Default is false.
  326. ; AllowCreateUser = false
  327. ;; Allow the service to process HTTP setaccount calls.
  328. ;; Default is false.
  329. ; AllowSetAccount = false
  330. [GridUserService]
  331. ; for the server connector
  332. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:GridUserService"
  333. [AgentPreferencesService]
  334. ; for the server connector
  335. LocalServiceModule = "OpenSim.Services.UserAccountService.dll:AgentPreferencesService"
  336. [PresenceService]
  337. ; for the server connector
  338. LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
  339. [AvatarService]
  340. ; for the server connector
  341. LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
  342. [FriendsService]
  343. ; for the server connector
  344. LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService"
  345. [EstateService]
  346. LocalServiceModule = "OpenSim.Services.EstateService.dll:EstateDataService"
  347. [LibraryService]
  348. LibraryName = "OpenSim Library"
  349. DefaultLibrary = "./inventory/Libraries.xml"
  350. [LoginService]
  351. ; for the server connector
  352. LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
  353. ; for the service
  354. UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
  355. GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
  356. AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  357. InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
  358. AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
  359. PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
  360. GridService = "OpenSim.Services.GridService.dll:GridService"
  361. SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
  362. LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
  363. FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
  364. ; The minimum user level required for a user to be able to login. 0 by default
  365. ; If you disable a particular user's account then you can set their login level below this number.
  366. ; You can also change this level from the console though these changes will not be persisted.
  367. ; MinLoginLevel = 0
  368. ; Ask co-operative viewers to use a different currency name
  369. ;Currency = ""
  370. ;; Set minimum fee to publish classified
  371. ; ClassifiedFee = 0
  372. WelcomeMessage = "Welcome, Avatar!"
  373. AllowRemoteSetLoginLevel = "false"
  374. ; For V2 map
  375. MapTileURL = "${Const|BaseURL}:${Const|PublicPort}/";
  376. ; Url to search service
  377. ; SearchURL = "${Const|BaseURL}:${Const|PublicPort}/";
  378. ; For V3 destination guide
  379. ; DestinationGuide = "${Const|BaseURL}/guide"
  380. ; For V3 avatar picker (( work in progress ))
  381. ; AvatarPicker = "${Const|BaseURL}/avatars"
  382. ; If you run this login server behind a proxy, set this to true
  383. ; HasProxy = false
  384. ;# {DSTZone} {} {Override Daylight Saving Time rules} {* none local} "America/Los_Angeles;Pacific Standard Time"
  385. ;; Viewers do not receive timezone information from the server - almost all (?) default to Pacific Standard Time
  386. ;; However, they do rely on the server to tell them whether it's Daylight Saving Time or not.
  387. ;; Hence, calculating DST based on a different timezone can result in a misleading viewer display and inconsistencies between grids.
  388. ;; By default, this setting uses various timezone names to calculate DST with regards to the viewer's standard PST.
  389. ;; Options are
  390. ;; "none" no DST
  391. ;; "local" use the server's only timezone to calculate DST. This is previous OpenSimulator behaviour.
  392. ;; "America/Los_Angeles;Pacific Standard Time" use these timezone names to look up Daylight savings.
  393. ;; 'America/Los_Angeles' is used on Linux/Mac systems whilst 'Pacific Standard Time' is used on Windows
  394. DSTZone = "America/Los_Angeles;Pacific Standard Time"
  395. ;; If the region requested at login is not found and there are no default or fallback regions
  396. ;; online or defined in section [GridService], try to send user to any region online
  397. ;; this similar to legacy (was disabled on 0.9.2.0)
  398. ;; you should set this to false and define regions with Default and possible Fallback flags
  399. ;; With this option set to true, users maybe sent to regions they where not supposed to be, or even know about
  400. AllowLoginFallbackToAnyRegion = false
  401. ;Basic Login Service Dos Protection Tweaks
  402. ;;
  403. ;; Some Grids/Users use a transparent proxy that makes use of the X-Forwarded-For HTTP Header, If you do, set this to true
  404. ;; 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
  405. ;; get around this basic DOS protection.
  406. ;DOSAllowXForwardedForHeader = false
  407. ;;
  408. ;; The protector adds up requests during this rolling period of time, default 10 seconds
  409. ;DOSRequestTimeFrameMS = 10000
  410. ;;
  411. ;; The amount of requests in the above timeframe from the same endpoint that triggers protection
  412. ;DOSMaxRequestsInTimeFrame = 5
  413. ;;
  414. ;; The amount of time that a specific endpoint is blocked. Default 2 minutes.
  415. ;DOSForgiveClientAfterMS = 120000
  416. ;;
  417. ;; To turn off basic dos protection, set the DOSMaxRequestsInTimeFrame to 0.
  418. ;; Allow banning via hashed MAC
  419. ;DeniedMacs = "YOURLONGMACTRSING ANOTHERMAC"
  420. [MapImageService]
  421. LocalServiceModule = "OpenSim.Services.MapImageService.dll:MapImageService"
  422. ; Set this if you want to change the default
  423. ; TilesStoragePath = "maptiles"
  424. ;
  425. ; If for some reason you have the AddMapTile service outside the firewall (e.g. ${Const|PublicPort}),
  426. ; you may want to set this. Otherwise, don't set it, because it's already protected.
  427. ; GridService = "OpenSim.Services.GridService.dll:GridService"
  428. ;
  429. ; Additionally, if you run this server behind a proxy, set this to true
  430. ; HasProxy = false
  431. [GridInfoService]
  432. ; These settings are used to return information on a get_grid_info call.
  433. ; Client launcher scripts and third-party clients make use of this to
  434. ; autoconfigure the client and to provide a nice user experience. If you
  435. ; want to facilitate that, you should configure the settings here according
  436. ; to your grid or standalone setup.
  437. ;
  438. ; See http://opensimulator.org/wiki/GridInfo
  439. ; login uri: for grid this is the login server URI
  440. login = ${Const|BaseURL}:${Const|PublicPort}/
  441. ; long grid name: the long name of your grid
  442. gridname = "the lost continent of hippo"
  443. ; short grid name: the short name of your grid
  444. gridnick = "hippogrid"
  445. ; login page: optional: if it exists it will be used to tell the client to use
  446. ; this as splash page
  447. ;welcome = ${Const|BaseURL}/welcome
  448. ; helper uri: optional: if it exists it will be used to tell the client to use
  449. ; this for all economy related things
  450. ;economy = ${Const|BaseURL}/economy
  451. ; web page of grid: optional: page providing further information about your grid
  452. ;about = ${Const|BaseURL}/about
  453. ; account creation: optional: page providing further information about obtaining
  454. ; a user account on your grid
  455. ;register = ${Const|BaseURL}/register
  456. ; help: optional: page providing further assistance for users of your grid
  457. ;help = ${Const|BaseURL}/help
  458. ; password help: optional: page providing password assistance for users of your grid
  459. ;password = ${Const|BaseURL}/password
  460. ; a http page for grid status
  461. ;GridStatus = ${Const|BaseURL}:${Const|PublicPort}/GridStatus
  462. ; a RSS page for grid status
  463. ;GridStatusRSS = ${Const|BaseURL}:${Const|PublicPort}/GridStatusRSS
  464. [Messaging]
  465. ; OfflineIM
  466. OfflineIMService = "OpenSim.Addons.OfflineIM.dll:OfflineIMService"
  467. [Groups]
  468. ;; Sets the maximum number of groups an agent may join
  469. ; MaxAgentGroups = 42
  470. [UserProfilesService]
  471. LocalServiceModule = "OpenSim.Services.UserProfilesService.dll:UserProfilesService"
  472. Enabled = false
  473. ;; Configure this for separate profiles database
  474. ;; ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;"
  475. ;; Realm = UserProfiles
  476. UserAccountService = OpenSim.Services.UserAccountService.dll:UserAccountService
  477. AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
  478. [BakedTextureService]
  479. LocalServiceModule = "OpenSim.Server.Handlers.dll:XBakes"
  480. ;; This directory must be writable by the user ROBUST runs as. It will be created automatically.
  481. BaseDirectory = "./bakes"
  482. [MuteListService]
  483. LocalServiceModule = "OpenSim.Services.MuteListService.dll:MuteListService"