2010-08-16 14:44:54 +00:00
|
|
|
; * Run
|
|
|
|
; * $ Robust.exe -inifile Robust.ini
|
|
|
|
; *
|
2010-08-20 17:25:44 +00:00
|
|
|
|
2009-07-07 16:21:51 +00:00
|
|
|
; * The startup section lists all the connectors to start up in this server
|
|
|
|
; * instance. This may be only one, or it may be the entire server suite.
|
2010-08-16 14:44:54 +00:00
|
|
|
; * Multiple connectors should be separated by commas.
|
2009-07-07 16:21:51 +00:00
|
|
|
; *
|
|
|
|
; * These are the IN connectors the server uses, the in connectors
|
2010-01-03 19:44:57 +00:00
|
|
|
; * read this config file and load the needed service and database connectors
|
2009-07-07 16:21:51 +00:00
|
|
|
; *
|
2010-08-16 14:44:54 +00:00
|
|
|
; * The full syntax of a connector string is:
|
2010-08-20 17:25:44 +00:00
|
|
|
; * [[<ConfigName>@]<port>/]<dll name>[:<class name>]
|
2009-09-04 07:10:05 +00:00
|
|
|
; *
|
2009-07-07 16:21:51 +00:00
|
|
|
[Startup]
|
2011-06-13 16:13:44 +00:00
|
|
|
ServiceConnectors = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector,8003/OpenSim.Server.Handlers.dll:XInventoryInConnector,8004/OpenSim.Server.Handlers.dll:FreeswitchServerConnector,8003/OpenSim.Server.Handlers.dll:GridServiceConnector,8002/OpenSim.Server.Handlers.dll:GridInfoServerInConnector,8003/OpenSim.Server.Handlers.dll:AuthenticationServiceConnector,8002/OpenSim.Server.Handlers.dll:OpenIdServerConnector,8003/OpenSim.Server.Handlers.dll:AvatarServiceConnector,8002/OpenSim.Server.Handlers.dll:LLLoginServiceInConnector,8003/OpenSim.Server.Handlers.dll:PresenceServiceConnector,8003/OpenSim.Server.Handlers.dll:UserAccountServiceConnector,8003/OpenSim.Server.Handlers.dll:GridUserServiceConnector,8003/OpenSim.Server.Handlers.dll:FriendsServiceConnector,8003/OpenSim.Server.Handlers.dll:MapAddServiceConnector,8002/OpenSim.Server.Handlers.dll:MapGetServiceConnector"
|
2009-07-07 16:21:51 +00:00
|
|
|
|
|
|
|
; * This is common for all services, it's the network setup for the entire
|
2010-12-09 17:30:17 +00:00
|
|
|
; * server instance, if none is specified above
|
2009-07-07 16:21:51 +00:00
|
|
|
; *
|
2010-01-31 21:19:03 +00:00
|
|
|
[Network]
|
|
|
|
port = 8003
|
2009-07-07 16:21:51 +00:00
|
|
|
|
2011-05-01 18:44:09 +00:00
|
|
|
; HTTPS for "Out of band" management applications such as the remote admin
|
|
|
|
; module. May specify https_main = True to make the main http server
|
|
|
|
; use https or "False" to make the main server HTTP
|
|
|
|
; https_main = False
|
|
|
|
;
|
|
|
|
; Create https_listener = "True" will create a listener on the port
|
|
|
|
; specified. Provide the path to your server certificate along with it's
|
|
|
|
; password
|
|
|
|
; https_listener = False
|
|
|
|
;
|
|
|
|
; Set our listener to this port
|
|
|
|
; https_port = 0
|
|
|
|
;
|
|
|
|
; Path to X509 certificate
|
|
|
|
; cert_path = "path/to/cert.p12"
|
|
|
|
;
|
|
|
|
; Password for cert
|
|
|
|
; cert_pass = "password"
|
|
|
|
|
|
|
|
|
2009-08-17 07:48:37 +00:00
|
|
|
; * The following are for the remote console
|
|
|
|
; * They have no effect for the local or basic console types
|
|
|
|
; * Leave commented to diable logins to the console
|
|
|
|
;ConsoleUser = Test
|
|
|
|
;ConsolePass = secret
|
2010-01-11 03:49:05 +00:00
|
|
|
;ConsolePort = 0
|
2009-08-17 07:48:37 +00:00
|
|
|
|
2010-01-31 22:37:22 +00:00
|
|
|
[DatabaseService]
|
|
|
|
StorageProvider = "OpenSim.Data.MySQL.dll"
|
2010-06-13 00:08:05 +00:00
|
|
|
ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=*****;Old Guids=true;"
|
2010-01-31 22:37:22 +00:00
|
|
|
|
2009-07-07 16:21:51 +00:00
|
|
|
; * As an example, the below configuration precisely mimicks the legacy
|
|
|
|
; * asset server. It is read by the asset IN connector (defined above)
|
|
|
|
; * and it then loads the OUT connector (a local database module). That,
|
|
|
|
; * in turn, reads the asset loader and database connection information
|
|
|
|
; *
|
|
|
|
[AssetService]
|
2010-01-03 19:44:57 +00:00
|
|
|
LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"
|
|
|
|
DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"
|
2010-12-09 17:30:17 +00:00
|
|
|
AssetLoaderArgs = "./assets/AssetSets.xml"
|
2010-05-09 16:56:52 +00:00
|
|
|
AllowRemoteDelete = "false"
|
2009-07-07 20:19:40 +00:00
|
|
|
|
|
|
|
; * This configuration loads the inventory server modules. It duplicates
|
|
|
|
; * the function of the legacy inventory server
|
|
|
|
; *
|
|
|
|
[InventoryService]
|
2010-05-02 17:31:35 +00:00
|
|
|
LocalServiceModule = "OpenSim.Services.InventoryService.dll:XInventoryService"
|
2010-01-03 19:44:57 +00:00
|
|
|
|
|
|
|
; * This is the new style grid service.
|
|
|
|
; * "Realm" is the table that is used for user lookup.
|
|
|
|
; * It defaults to "regions", which uses the legacy tables
|
|
|
|
; *
|
|
|
|
[GridService]
|
|
|
|
LocalServiceModule = "OpenSim.Services.GridService.dll:GridService"
|
2010-08-16 14:44:54 +00:00
|
|
|
; Realm = "regions"
|
2010-01-16 00:05:08 +00:00
|
|
|
; AllowDuplicateNames = "True"
|
2010-10-05 02:44:10 +00:00
|
|
|
|
2010-01-13 23:28:46 +00:00
|
|
|
;; Next, we can specify properties of regions, including default and fallback regions
|
2010-01-19 04:35:59 +00:00
|
|
|
;; The syntax is: Region_<RegionName> = "<flags>"
|
|
|
|
;; or: Region_<RegionID> = "<flags>"
|
2010-01-16 00:05:08 +00:00
|
|
|
;; where <flags> can be DefaultRegion, FallbackRegion, NoDirectLogin, Persistent, LockedOut,Reservation,NoMove,Authenticate
|
2010-10-05 02:44:10 +00:00
|
|
|
;; For example:
|
2010-01-16 00:05:08 +00:00
|
|
|
; Region_Welcome_Area = "DefaultRegion, FallbackRegion"
|
2010-01-19 04:35:59 +00:00
|
|
|
; (replace spaces with underscore)
|
2009-07-07 20:19:40 +00:00
|
|
|
|
2009-08-04 03:40:22 +00:00
|
|
|
; * This is the configuration for the freeswitch server in grid mode
|
|
|
|
[FreeswitchService]
|
2010-01-03 19:44:57 +00:00
|
|
|
LocalServiceModule = "OpenSim.Services.FreeswitchService.dll:FreeswitchService"
|
2011-04-19 20:54:26 +00:00
|
|
|
|
|
|
|
;; The IP address of your FreeSWITCH server.
|
2011-06-02 20:37:17 +00:00
|
|
|
;; This address must be reachable by viewers.
|
2010-11-21 21:35:31 +00:00
|
|
|
; ServerAddress = 127.0.0.1
|
2010-11-21 20:59:01 +00:00
|
|
|
|
2011-04-19 20:54:26 +00:00
|
|
|
;; The following configuration parameters are optional
|
|
|
|
|
|
|
|
;; By default, this is the same as the ServerAddress
|
|
|
|
; Realm = 127.0.0.1
|
|
|
|
|
|
|
|
;; By default, this is the same as the ServerAddress on port 5060
|
|
|
|
; SIPProxy = 127.0.0.1:5060
|
|
|
|
|
|
|
|
;; Default is 5000ms
|
2010-11-21 20:59:01 +00:00
|
|
|
; DefaultTimeout = 5000
|
2011-04-19 20:54:26 +00:00
|
|
|
|
|
|
|
;; The dial plan context. Default is "default"
|
|
|
|
; Context = default
|
|
|
|
|
|
|
|
;; Currently unused
|
|
|
|
; UserName = freeswitch
|
|
|
|
|
|
|
|
;; Currently unused
|
|
|
|
; Password = password
|
|
|
|
|
|
|
|
;; The following parameters are for STUN = Simple Traversal of UDP through NATs
|
|
|
|
;; See http://wiki.freeswitch.org/wiki/NAT_Traversal
|
|
|
|
;; stun.freeswitch.org is not guaranteed to be running so use it in
|
|
|
|
;; production at your own risk
|
|
|
|
; EchoServer = 127.0.0.1
|
|
|
|
; EchoPort = 50505
|
|
|
|
; AttemptSTUN = false
|
2009-09-04 07:10:05 +00:00
|
|
|
|
|
|
|
; * This is the new style authentication service. Currently, only MySQL
|
2010-12-09 17:30:17 +00:00
|
|
|
; * is implemented.
|
2009-09-04 07:10:05 +00:00
|
|
|
; *
|
|
|
|
[AuthenticationService]
|
2010-01-11 01:15:02 +00:00
|
|
|
; for the server connector
|
2010-01-11 01:19:40 +00:00
|
|
|
LocalServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
|
2009-09-04 07:10:05 +00:00
|
|
|
|
2011-10-24 20:34:44 +00:00
|
|
|
;; Allow the service to process HTTP getauthinfo calls.
|
|
|
|
;; Default is false.
|
|
|
|
; AllowGetAuthInfo = false
|
|
|
|
|
|
|
|
;; Allow the service to process HTTP setauthinfo calls.
|
|
|
|
;; Default is false.
|
|
|
|
; AllowSetAuthInfo = false
|
|
|
|
|
2011-10-19 18:01:57 +00:00
|
|
|
;; Allow the service to process HTTP setpassword calls.
|
|
|
|
;; Default is false.
|
|
|
|
; AllowSetPassword = false
|
|
|
|
|
2010-01-11 01:15:02 +00:00
|
|
|
[OpenIdService]
|
|
|
|
; for the server connector
|
|
|
|
AuthenticationServiceModule = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
|
2010-01-12 17:22:58 +00:00
|
|
|
UserAccountServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
|
2010-10-05 02:44:10 +00:00
|
|
|
|
2010-08-16 14:44:54 +00:00
|
|
|
; * This is the new style authentication service. Currently, only MySQL
|
|
|
|
; * is implemented. "Realm" is the table that is used for user lookup.
|
|
|
|
; * It defaults to "useraccounts", which uses the new style.
|
|
|
|
; * Realm = "users" will use the legacy tables as an authentication source
|
2009-09-06 03:44:08 +00:00
|
|
|
; *
|
|
|
|
[UserAccountService]
|
2010-01-11 01:15:02 +00:00
|
|
|
; for the server connector
|
2010-01-03 19:44:57 +00:00
|
|
|
LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService"
|
|
|
|
; Realm = "useraccounts"
|
2010-08-20 17:25:44 +00:00
|
|
|
|
|
|
|
; These are for creating new accounts by the service
|
2010-01-13 18:15:14 +00:00
|
|
|
AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
|
|
|
|
PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
|
|
|
|
GridService = "OpenSim.Services.GridService.dll:GridService"
|
2010-05-02 17:31:35 +00:00
|
|
|
InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
|
2011-10-18 21:51:40 +00:00
|
|
|
AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
|
2011-09-15 23:30:37 +00:00
|
|
|
|
|
|
|
;; This switch creates the minimum set of body parts and avatar entries for a viewer 2
|
|
|
|
;; to show a default "Ruth" avatar rather than a cloud for a newly created user.
|
|
|
|
;; Default is false
|
|
|
|
; CreateDefaultAvatarEntries = false
|
|
|
|
|
2011-10-19 18:01:57 +00:00
|
|
|
;; Allow the service to process HTTP createuser calls.
|
2011-10-18 21:51:40 +00:00
|
|
|
;; Default is false.
|
|
|
|
; AllowCreateUser = false
|
|
|
|
|
2011-10-19 18:01:57 +00:00
|
|
|
;; Allow the service to process HTTP setaccount calls.
|
2011-10-18 23:06:40 +00:00
|
|
|
;; Default is false.
|
|
|
|
; AllowSetAccount = false
|
|
|
|
|
2010-01-13 18:15:14 +00:00
|
|
|
|
2010-05-08 04:29:56 +00:00
|
|
|
[GridUserService]
|
|
|
|
; for the server connector
|
|
|
|
LocalServiceModule = "OpenSim.Services.UserAccountService.dll:GridUserService"
|
|
|
|
|
2010-01-03 19:44:57 +00:00
|
|
|
[PresenceService]
|
2010-01-11 01:19:40 +00:00
|
|
|
; for the server connector
|
2010-01-03 19:44:57 +00:00
|
|
|
LocalServiceModule = "OpenSim.Services.PresenceService.dll:PresenceService"
|
2010-11-05 13:31:45 +00:00
|
|
|
; Set this to true to allow the use of advanced web services and multiple
|
|
|
|
; bots using one account
|
|
|
|
AllowDuplicatePresences = false;
|
2010-01-03 19:44:57 +00:00
|
|
|
|
2010-01-12 17:22:58 +00:00
|
|
|
[AvatarService]
|
|
|
|
; for the server connector
|
|
|
|
LocalServiceModule = "OpenSim.Services.AvatarService.dll:AvatarService"
|
|
|
|
|
2010-02-26 16:46:30 +00:00
|
|
|
[FriendsService]
|
|
|
|
; for the server connector
|
|
|
|
LocalServiceModule = "OpenSim.Services.FriendsService.dll:FriendsService"
|
|
|
|
|
2010-01-03 19:44:57 +00:00
|
|
|
[LibraryService]
|
|
|
|
LibraryName = "OpenSim Library"
|
|
|
|
DefaultLibrary = "./inventory/Libraries.xml"
|
|
|
|
|
|
|
|
[LoginService]
|
2010-01-11 01:19:40 +00:00
|
|
|
; for the server connector
|
2010-01-03 19:44:57 +00:00
|
|
|
LocalServiceModule = "OpenSim.Services.LLLoginService.dll:LLLoginService"
|
2010-01-11 01:19:40 +00:00
|
|
|
; for the service
|
2010-01-03 19:44:57 +00:00
|
|
|
UserAccountService = "OpenSim.Services.UserAccountService.dll:UserAccountService"
|
2010-05-08 04:29:56 +00:00
|
|
|
GridUserService = "OpenSim.Services.UserAccountService.dll:GridUserService"
|
2010-01-03 19:44:57 +00:00
|
|
|
AuthenticationService = "OpenSim.Services.AuthenticationService.dll:PasswordAuthenticationService"
|
2010-05-02 17:31:35 +00:00
|
|
|
InventoryService = "OpenSim.Services.InventoryService.dll:XInventoryService"
|
2010-01-12 17:22:58 +00:00
|
|
|
AvatarService = "OpenSim.Services.AvatarService.dll:AvatarService"
|
2010-01-03 19:44:57 +00:00
|
|
|
PresenceService = "OpenSim.Services.PresenceService.dll:PresenceService"
|
|
|
|
GridService = "OpenSim.Services.GridService.dll:GridService"
|
|
|
|
SimulationService ="OpenSim.Services.Connectors.dll:SimulationServiceConnector"
|
|
|
|
LibraryService = "OpenSim.Services.InventoryService.dll:LibraryService"
|
2010-02-26 01:42:51 +00:00
|
|
|
FriendsService = "OpenSim.Services.FriendsService.dll:FriendsService"
|
2010-01-03 19:44:57 +00:00
|
|
|
|
2011-08-21 23:58:11 +00:00
|
|
|
;; Ask co-operative viewers to use a different currency name
|
2011-08-14 16:20:20 +00:00
|
|
|
;Currency = ""
|
|
|
|
|
2010-01-03 19:44:57 +00:00
|
|
|
WelcomeMessage = "Welcome, Avatar!"
|
2010-05-06 04:12:13 +00:00
|
|
|
AllowRemoteSetLoginLevel = "false"
|
2010-03-03 04:17:25 +00:00
|
|
|
|
2011-06-13 16:13:44 +00:00
|
|
|
; For V2 map
|
2011-11-19 00:34:56 +00:00
|
|
|
MapTileURL = "http://127.0.0.1:8002";
|
2010-07-02 03:03:35 +00:00
|
|
|
|
2010-10-04 03:35:26 +00:00
|
|
|
; If you run this login server behind a proxy, set this to true
|
2010-12-09 17:30:17 +00:00
|
|
|
; HasProxy = false
|
2010-10-04 03:35:26 +00:00
|
|
|
|
2011-04-27 14:02:37 +00:00
|
|
|
;; Regular expressions for controlling which client versions are accepted/denied.
|
|
|
|
;; An empty string means nothing is checked.
|
|
|
|
;;
|
|
|
|
;; Example 1: allow only these 3 types of clients (any version of them)
|
|
|
|
;; AllowedClients = "Imprudence|Hippo|Second Life"
|
|
|
|
;;
|
|
|
|
;; Example 2: allow all clients except these
|
|
|
|
;; DeniedClients = "Twisted|Crawler|Cryolife|FuckLife|StreetLife|GreenLife|AntiLife|KORE-Phaze|Synlyfe|Purple Second Life|SecondLi |Emerald"
|
|
|
|
;;
|
|
|
|
;; Note that these are regular expressions, so every character counts.
|
|
|
|
;; Also note that this is very weak security and should not be trusted as a reliable means
|
|
|
|
;; for keeping bad clients out; modified clients can fake their identifiers.
|
|
|
|
;;
|
|
|
|
;;
|
|
|
|
;AllowedClients = ""
|
|
|
|
;DeniedClients = ""
|
|
|
|
|
2011-06-13 16:13:44 +00:00
|
|
|
[MapImageService]
|
|
|
|
LocalServiceModule = "OpenSim.Services.MapImageService.dll:MapImageService"
|
2011-06-15 18:11:14 +00:00
|
|
|
; Set this if you want to change the default
|
|
|
|
; TilesStoragePath = "maptiles"
|
|
|
|
|
2011-06-13 16:13:44 +00:00
|
|
|
|
2010-03-03 04:17:25 +00:00
|
|
|
[GridInfoService]
|
|
|
|
; These settings are used to return information on a get_grid_info call.
|
|
|
|
; Client launcher scripts and third-party clients make use of this to
|
|
|
|
; autoconfigure the client and to provide a nice user experience. If you
|
|
|
|
; want to facilitate that, you should configure the settings here according
|
|
|
|
; to your grid or standalone setup.
|
|
|
|
;
|
|
|
|
; See http://opensimulator.org/wiki/GridInfo
|
|
|
|
|
|
|
|
; login uri: for grid this is the login server URI
|
|
|
|
login = http://127.0.0.1:9000/
|
|
|
|
|
|
|
|
; long grid name: the long name of your grid
|
|
|
|
gridname = "the lost continent of hippo"
|
|
|
|
|
|
|
|
; short grid name: the short name of your grid
|
|
|
|
gridnick = "hippogrid"
|
|
|
|
|
|
|
|
; login page: optional: if it exists it will be used to tell the client to use
|
|
|
|
; this as splash page
|
|
|
|
;welcome = http://127.0.0.1/welcome
|
|
|
|
|
|
|
|
; helper uri: optional: if it exists if will be used to tell the client to use
|
|
|
|
; this for all economy related things
|
|
|
|
;economy = http://127.0.0.1:9000/
|
|
|
|
|
|
|
|
; web page of grid: optional: page providing further information about your grid
|
|
|
|
;about = http://127.0.0.1/about/
|
|
|
|
|
|
|
|
; account creation: optional: page providing further information about obtaining
|
|
|
|
; a user account on your grid
|
|
|
|
;register = http://127.0.0.1/register
|
|
|
|
|
|
|
|
; help: optional: page providing further assistance for users of your grid
|
|
|
|
;help = http://127.0.0.1/help
|
|
|
|
|
|
|
|
; password help: optional: page providing password assistance for users of your grid
|
|
|
|
;password = http://127.0.0.1/password
|