Robust.ini.example 28 KB

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